1. d986853 Documentation cleanup: Use \brief for summaries, and escape # characters. by James Dennett · 12 years ago
  2. ec76993 Documentation cleanup: by James Dennett · 12 years ago
  3. 58f9ce1 Documentation cleanup: added \verbatim...\verbatim markup to fix the by James Dennett · 12 years ago
  4. b6e95b7 Documentation cleanup: by James Dennett · 12 years ago
  5. 0cdd1fe [-E] Emit a rewritten _Pragma on its own line. by Jordan Rose · 12 years ago
  6. a05369f Documentation cleanup: escape backslashes in Doxygen comments. by James Dennett · 12 years ago
  7. d2e95d1 PR12717: Clang supports hexadecimal floating-point literals in all language by Richard Smith · 12 years ago
  8. 1a83546 Fix PR13065. by David Blaikie · 12 years ago
  9. 4ef2f6a Rename a loop variable to silence a gcc warning. by Richard Trieu · 12 years ago
  10. f122a13 Add -isystem-prefix and -ino-system-prefix arguments, which can be used to by Richard Smith · 12 years ago
  11. c5f7459 Fix issue where a token paste which forms a /* or // would discard the rest of by Richard Smith · 12 years ago
  12. 59b26d8 Fix off-by-one error in UTF-16 encoding: don't try to use a surrogate pair for U+FFFF. by Richard Smith · 12 years ago
  13. df9ef1b PR13099: Teach -Wformat about raw string literals, UTF-8 strings and Unicode escape sequences. by Richard Smith · 12 years ago
  14. 092bf67 Correct method name in comment: from LexRawToken to LexFromRawLexer, according by Dmitri Gribenko · 12 years ago
  15. 6fe6a49 Disable _Pragma during HTML macro rewriting to keep from crashing. by Jordan Rose · 12 years ago
  16. d880b3a Insert a space if necessary when suggesting CFBridgingRetain/Release. by Jordan Rose · 12 years ago
  17. 8c0b378 Add a -rewrite-includes option, which is similar to -rewrite-macros, but only expands #include directives. by David Blaikie · 12 years ago
  18. 80d7c52 Escape \n and \r in doxycomment. by David Blaikie · 12 years ago
  19. d73ef13 Add pedantic warning -Wempty-translation-unit (C11 6.9p1). by Jordan Rose · 12 years ago
  20. 25c2596 Initialize the non-target-dependent fields of the Preprocessor in its constructor by Argyrios Kyrtzidis · 12 years ago
  21. 3093b20 Lexer::ReadToEndOfLine: Only build the string if it's actually used and do so in a less malloc-intensive way. by Benjamin Kramer · 12 years ago
  22. 66c44e7 [preprocessor] Make sure that MacroExpands callbacks are always in source order. by Argyrios Kyrtzidis · 12 years ago
  23. 3144749 In StringLiteralParser::init, make sure we emit an error when by Argyrios Kyrtzidis · 12 years ago
  24. 07a0758 In StringLiteralParser::init(), fail gracefully if the string is by Argyrios Kyrtzidis · 12 years ago
  25. eb382ec Implements boxed expressions for Objective-C. <rdar://problem/10194391> by Patrick Beard · 12 years ago
  26. 5e6c3f0 Support -Wc++98-compat-pedantic as requested: by Seth Cantrell · 12 years ago
  27. d555222 C++11 no longer requires files to end with a newline by Seth Cantrell · 12 years ago
  28. 316551f Add a query macro for C++11 N3276, decltype does not require complete by Douglas Gregor · 12 years ago
  29. b0afd5d ext_reserved_user_defined_literal must not default to Error in MicrosoftMode. Hence create ext_ms_reserved_user_defined_literal that doesn't default to Error; otherwise MSVC headers won't parse. by Francois Pichet · 12 years ago
  30. 85ff969 [Lex] Add support for 'user specified system frameworks' (see test case). by Daniel Dunbar · 12 years ago
  31. 9ee35f9 [Lex] HeaderSearch: Introduce a FrameworkCacheEntry structure to hold the FrameworkMap items. by Daniel Dunbar · 12 years ago
  32. f535a98 Simplify. by Daniel Dunbar · 12 years ago
  33. a06642a [preprocessor] In Preprocessor::CachingLex() check whether there were more tokens by Argyrios Kyrtzidis · 12 years ago
  34. 7b156dd Add feature check "cxx_local_type_template_args" describing support by Douglas Gregor · 12 years ago
  35. 14e6455 Correct handling of _Pragma macro inside a macro argument. by Argyrios Kyrtzidis · 12 years ago
  36. e2e8768 Fixed MacroInfo definition range for function like macros with empty body. by Abramo Bagnara · 12 years ago
  37. c0b6dbe Make ModuleMapParser own its TargetInfo, so it doesn't get leaked. by Benjamin Kramer · 12 years ago
  38. db81d38 [preprocessor] Handle correctly inclusion directives that have macro expansions, e.g by Argyrios Kyrtzidis · 12 years ago
  39. 7e42392 Simplify some users of DenseMap::erase. by Benjamin Kramer · 12 years ago
  40. 4207eda Turns #import in MS Mode into an error. by Aaron Ballman · 12 years ago
  41. e55329d From Vassil Vassilev: by Axel Naumann · 12 years ago
  42. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 12 years ago
  43. 26b75c0 Improve diagnostics for UCNs referring to control characters and members of the by Richard Smith · 12 years ago
  44. 9c1dda7 User-defined literals are done. by Richard Smith · 12 years ago
  45. 49d5174 When checking the encoding of an 8-bit string literal, don't just check the by Richard Smith · 12 years ago
  46. b453ad3 Add support for cooked forms of user-defined-integer-literal and by Richard Smith · 12 years ago
  47. 2fb4ae3 Implement C++11 [lex.ext]p10 for string and character literals: a ud-suffix not by Richard Smith · 12 years ago
  48. dd66be7 User-defined literal support for character literals. by Richard Smith · 12 years ago
  49. e816c71 Add -Wc++11-compat warning for string and character literals followed by by Richard Smith · 12 years ago
  50. ebcb57a Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, by Ted Kremenek · 12 years ago
  51. 99831e4 User-defined literals: reject string and character UDLs in all places where the by Richard Smith · 12 years ago
  52. c6c5452 [preprocessor] Enhance PreprocessingRecord to keep track of locations of conditional directives. by Argyrios Kyrtzidis · 12 years ago
  53. bb66066 [preprocessor] Enhance the preprocessor callbacks: by Argyrios Kyrtzidis · 12 years ago
  54. 5cc2c6e Lexing support for user-defined literals. Currently these lex as the same token by Richard Smith · 12 years ago
  55. ec92bc7 Add a pile of tests for unrestricted unions, and advertise support for them. by Richard Smith · 12 years ago
  56. 7eb7d99 Remove unused variable. by Benjamin Kramer · 12 years ago
  57. 4c55c54 Adding support for #pragma include_alias in MS compatibility mode. This implements PR 10705. by Aaron Ballman · 12 years ago
  58. 32ad2ee Change @import to @__experimental_modules_import. We are not ready to commit to a particular syntax for modules, by Ted Kremenek · 12 years ago
  59. 8a5e7fd Implement double underscore names support in __has_attribute by Jean-Daniel Dupas · 12 years ago
  60. 10285d9 Revert r151800, which was committed without review and has correctness issues. by Richard Smith · 12 years ago
  61. 7abe166 Implements support for #pragma include_alias in ms compatibility mode. Fixes PR10705. by Aaron Ballman · 12 years ago
  62. 07a4b04 Move suport for redefining operator keywords from -fms-extensions to -fms-compatibility. by Nico Weber · 12 years ago
  63. f4fb07e Allow operator keywords to be #defined in ms-ext mode. by Nico Weber · 12 years ago
  64. d1dc3aa Initializer lists are now supported. by Sebastian Redl · 12 years ago
  65. 5297d71 Accept __has_feature(__feature__) as a synonym for __has_feature(feature) (and by Richard Smith · 12 years ago
  66. e1d4330 Don't record nested macro expansions in the preprocessing record, by Argyrios Kyrtzidis · 12 years ago
  67. 4ca8ac2 Implement a new type trait __is_trivially_constructible(T, Args...) by Douglas Gregor · 12 years ago
  68. 25d0a0f Provide the __is_trivially_assignable type trait, which provides by Douglas Gregor · 12 years ago
  69. 7c07e96 Clang now supports lambda expressions. by Douglas Gregor · 12 years ago
  70. c93dc78 Basic: import IntrusiveRefCntPtr<> into clang namespace by Dylan Noblesmith · 13 years ago
  71. b5216aa Advertize support for constexpr. by Richard Smith · 13 years ago
  72. 9135930 Implement warning for non-wide string literals with an unexpected encoding. Downgrade error for non-wide character literals with an unexpected encoding to a warning for compatibility with gcc and older versions of clang. <rdar://problem/10837678>. by Eli Friedman · 13 years ago
  73. 66b0eba Fixing hex floating literal support so that it handles 0x.2p2 properly. by Aaron Ballman · 13 years ago
  74. d7a3e2c Revert my patches which removed Diagnostic.h includes by moving some operator overloads out of line. by Benjamin Kramer · 13 years ago
  75. b534a9e Hex literals without a significand no longer crash the lexer. Fixes bug 7910 by Aaron Ballman · 13 years ago
  76. 5bbc385 Move instantiateTemplateAttribute into the sema namespace, make helpers static. by Benjamin Kramer · 13 years ago
  77. f7ccbad Basic: import SmallString<> into clang namespace by Dylan Noblesmith · 13 years ago
  78. 6f42b62 Basic: import OwningPtr<> into clang namespace by Dylan Noblesmith · 13 years ago
  79. 8fe83e1 Move a method from IdentifierTable.h out of line and remove the SmallString include. by Benjamin Kramer · 13 years ago
  80. fdd1560 Remove Diagnostic.h include from Preprocessor.h. by Benjamin Kramer · 13 years ago
  81. a83f4d2 Change Lexer::makeFileCharRange() to have it accept a CharSourceRange by Argyrios Kyrtzidis · 13 years ago
  82. 2f04f18 Back out my heinous hack that tricked the module generation mechanism by Douglas Gregor · 13 years ago
  83. 34a2c42 Per discussion on cfe-dev, remove '#error' and '#warning' from diagnostic text. by Ted Kremenek · 13 years ago
  84. f83a615 objc2: add __has_feature(objc_default_synthesize_properties). // rdar://10770497 by Fariborz Jahanian · 13 years ago
  85. 2831092 fix a crash on: by Chris Lattner · 13 years ago
  86. dc58aa7 Thread a TargetInfo through to the module map; we'll need it for by Douglas Gregor · 13 years ago
  87. c5b2e58 Implement code completion support for module import declarations, e.g., by Douglas Gregor · 13 years ago
  88. e434ec7 Rework HeaderSearch's interface for getting a module from a name and by Douglas Gregor · 13 years ago
  89. a1f1fad Introduce module attributes into the module map grammar, along with a by Douglas Gregor · 13 years ago
  90. 5d5051f Only mark an IdentifierInfo as having changed since deserialization by Douglas Gregor · 13 years ago
  91. 7f6cf97 Improve Lexer::getImmediateMacroName to take into account inner macros by Argyrios Kyrtzidis · 13 years ago
  92. d9806c9 Enhance Lexer::makeFileCharRange to check for ranges inside a macro argument by Argyrios Kyrtzidis · 13 years ago
  93. e64d903 Introduce Lexer::getSourceText() that returns a string for the source by Argyrios Kyrtzidis · 13 years ago
  94. 11b652d Introduce Lexer::makeFileCharRange() that accepts a token source range by Argyrios Kyrtzidis · 13 years ago
  95. 69bda4c For Lexer's isAt[Start/End]OfMacroExpansion add an out parameter for the macro by Argyrios Kyrtzidis · 13 years ago
  96. c2a8d6c Refactor: Pull getImmediateMacroName() out of DiagnosticRenderer and by Anna Zaks · 13 years ago
  97. 5393e21 stop claiming unicode escape sequences are too long in strings, because they never are by Seth Cantrell · 13 years ago
  98. be77352 Improves support for Unicode in character literals by Seth Cantrell · 13 years ago
  99. 7530c03 Remove unreachable code in Clang. (replace with llvm_unreachable where appropriate or when GCC requires it) by David Blaikie · 13 years ago
  100. 7a7ee30 Some improvements to the handling of C11 atomic types: by David Chisnall · 13 years ago