1. 860022c When used in a compound expression FP_CONTRACT should proceed all explicit by Lang Hames · 12 years ago
  2. aa9a8ce DR1473: Do not require a space between operator"" and the ud-suffix in a by Richard Smith · 12 years ago
  3. d654f2d DR1528: C++11 doesn't allow repeated cv-qualifiers in declarators after all. by Richard Smith · 12 years ago
  4. ac8ea05 Fixed FunctionTypeLoc range for trailing return type. by Abramo Bagnara · 12 years ago
  5. f4deaef Handle a "#pragma options align" inside a class. by Argyrios Kyrtzidis · 12 years ago
  6. 3ea19c8 Fix a crash-on-invalid when parsing a reference to an invalid auto declaration by David Blaikie · 12 years ago
  7. 8b2bfdd People put pragmas in crazy places; add more handling. PR14046. by Eli Friedman · 12 years ago
  8. 3ef38ee Make sure we allow "#pragma options align=mac68k" in function-local contexts. <rdar://problem/12453134> by Eli Friedman · 12 years ago
  9. 59c0a81 Fixed FunctionTypeLoc source range. by Abramo Bagnara · 12 years ago
  10. 45bed13 Fix scope location when parsing GNU attributes. by Michael Han · 12 years ago
  11. 9595c7e Permanently end the whole "pragma got handled by the parser too early" by Eli Friedman · 12 years ago
  12. 6880f49 Improve C++11 attribute parsing. by Michael Han · 12 years ago
  13. be9af12 Add FP_CONTRACT support for clang. by Lang Hames · 12 years ago
  14. 80bfa3d Fix an edge case of mangling involving the combination of a lambda and typeid. by Eli Friedman · 12 years ago
  15. ea30e2f Add the Microsoft __is_interface_class type trait. Patch by Andy Gibbs! by John McCall · 12 years ago
  16. e402e72 Fix for r163013 regression and further __interface enhancement. by John McCall · 12 years ago
  17. 8b533d9 If the range in a for range statement doesn't have a viable begin/end function, by Richard Smith · 12 years ago
  18. 4b08242 If a comma operator is followed by a token which unambiguously indicates the by Richard Smith · 12 years ago
  19. 03ebd3b objective-C: improve on warnings about misplacement of method by Fariborz Jahanian · 12 years ago
  20. 0860235 objective-C: issue warning when there is no whitespace by Fariborz Jahanian · 12 years ago
  21. f56faa0 Use LLVM_DELETED_FUNCTION in place of 'DO NOT IMPLEMENT' comments. by Dmitri Gribenko · 12 years ago
  22. b3cd3c0 Fix some dead stores which the static analyzer warned about. No functionality by Richard Smith · 12 years ago
  23. 3686c71 Recover properly after a parse error in a static_assert declaration. by Richard Smith · 12 years ago
  24. e23fb90 Fix a couple of Doxygen issues pointed out by -Wdocumentation. by Dmitri Gribenko · 12 years ago
  25. b648cf0 Revert "objective-C: warn under a flag if missing argument" by Ted Kremenek · 12 years ago
  26. e62b129 Revert "objective-C: warn if selector has nothing but bare" by Ted Kremenek · 12 years ago
  27. 10d65cd objective-C: warn if selector has nothing but bare by Fariborz Jahanian · 12 years ago
  28. 92faee7 objective-C: warn under a flag if missing argument by Fariborz Jahanian · 12 years ago
  29. 04992c7 Remove unused macro definition by Douglas Gregor · 12 years ago
  30. 568ba87 Revert r163083 per chandlerc's request. by Joao Matos · 12 years ago
  31. 5be92de Implemented parsing and AST support for the MS __leave exception statement. Also a minor fix to __except printing in StmtPrinter.cpp. Thanks to Aaron Ballman for review. by Joao Matos · 12 years ago
  32. 17d35c3 Normalize line endings of r163013 (part 2). by Joao Matos · 12 years ago
  33. 6666ed4 Improved MSVC __interface support by adding first class support for it, instead of aliasing to "struct" which had some incorrect behaviour. Patch by David Robins. by Joao Matos · 12 years ago
  34. d295970 Extend the "__is_pod" hack, which demotes various type trait keywords by Douglas Gregor · 12 years ago
  35. df5faf5 [ms-inline asm] As part of a larger refactoring, rename AsmStmt to GCCAsmStmt. by Chad Rosier · 12 years ago
  36. 56d7f23 [ms-inline asm] Change the -fenable-experimental-ms-inline-asm option from a by Chad Rosier · 12 years ago
  37. 1ddbd89 Fix a few -Wdocumentation warnings. by Dmitri Gribenko · 12 years ago
  38. 5354e77 Now that ASTMultiPtr is nothing more than a array reference, make it a MutableArrayRef. by Benjamin Kramer · 12 years ago
  39. 4e28d9e Remove ASTOwningVector, it doesn't own anything and provides no value over SmallVector. by Benjamin Kramer · 12 years ago
  40. 3fe198b Rip out remnants of move semantic emulation and smart pointers in Sema. by Benjamin Kramer · 12 years ago
  41. 40b2e19 When disambiguating an expression-statement from a declaraton-statement, if the by Richard Smith · 12 years ago
  42. 70517ca Fix a bunch of -Wdocumentation warnings. by Dmitri Gribenko · 12 years ago
  43. 377da4c Use LLVM_BUILTIN_TRAP instead of lame volatile int traps. by David Blaikie · 12 years ago
  44. e1715b6 Better diagnostics for range-based for loops with bad range types. by Sam Panzer · 12 years ago
  45. d30fb9e Thread-safety analysis: fix scoping issues related to 'this', including an by DeLesley Hutchins · 12 years ago
  46. 78fe3e0 PR13619: Make sure we're not at EOF before looking at NextToken(). by Richard Smith · 12 years ago
  47. 0576681 PR41111, PR5925, PR13210: Teach tentative parsing to annotate identifiers and by Richard Smith · 12 years ago
  48. 0d5a069 Add support for "type safety" attributes that allow checking that 'void *' by Dmitri Gribenko · 12 years ago
  49. bc20bbb Removed unused LParenLoc parameter to ActOnCXXForRangeStmt by Sam Panzer · 12 years ago
  50. 95526a4 Thread safety analysis: prevent a compiler error in cases where a by DeLesley Hutchins · 12 years ago
  51. f37e421 [ms-inline asm] MSVC parses multiple __asm statements on a single line as one by Chad Rosier · 12 years ago
  52. 7bd092b [ms-inline asm] Add the left brace source location and improve the pretty by Chad Rosier · 12 years ago
  53. 92570bd [ms-inline asm] Remove the last bits of LineEnds. by Chad Rosier · 12 years ago
  54. 21ef711 [ms-inline asm] Add a helpful assert. by Chad Rosier · 12 years ago
  55. e6b3fea Removed an unused function I added a while back. by Fariborz Jahanian · 12 years ago
  56. 9e5df31 objective-C++: dalyed parsing of ctors with member by Fariborz Jahanian · 12 years ago
  57. dbd6945 objective-C++: delay parsing of ctor with try block by Fariborz Jahanian · 12 years ago
  58. 2eb362b objective-C++: delayed parsing of member function with by Fariborz Jahanian · 12 years ago
  59. be1d4ec objective-C++: Delayed parsing of most common by Fariborz Jahanian · 12 years ago
  60. 6940972 objective-C: refactoring of objc's delayed parsing. by Fariborz Jahanian · 12 years ago
  61. 950435c In 'delete []', the '[]' never starts a lambda. Update a FIXME with a standard reference and add a test. by Richard Smith · 12 years ago
  62. c9b9709 objective-C: minor refactoring in method definition parsing logic. by Fariborz Jahanian · 12 years ago
  63. dcdff46 Minor simplification for r161534. by Eli Friedman · 12 years ago
  64. 8c6cb46 objective-C: refactor/simplify parsing of delayed by Fariborz Jahanian · 12 years ago
  65. 817a886 Fix r161534 so it actually builds. by Eli Friedman · 12 years ago
  66. de01b7a PR13558: Fix typo 'compatiblity'. Thinking of the children. Apparently. by Richard Smith · 12 years ago
  67. f66a0dd Handle deprecation diagnostics correctly for C struct fields and Objective-C properties/ivars. <rdar://problem/6642337>. by Eli Friedman · 12 years ago
  68. 62f22b8 [ms-inline asm] Refactor the logic to generate the AsmString into Sema. No by Chad Rosier · 12 years ago
  69. 79efe24 [ms-inline asm] Stmt destructors are never called, so allocate the AsmToks using by Chad Rosier · 12 years ago
  70. 8f726de [ms-inline asm] Pass Tokens to Sema and store them in the AST. No functional by Chad Rosier · 12 years ago
  71. d48ab06 Tweak code-completion heuristics deciding between a lambda by Douglas Gregor · 12 years ago
  72. 437fbc5 When we encounter a code-completion token while parsing an ill-formed by Douglas Gregor · 12 years ago
  73. b9c6261 Improvements to vexing-parse warnings. Make the no-parameters case more by Richard Smith · 12 years ago
  74. ec98f2f Fix an assertion failure when code completing an auto variable's initialiser. by Peter Collingbourne · 12 years ago
  75. 11abf2a clang/lib: [CMake] Update tblgen'd dependencies. by NAKAMURA Takumi · 12 years ago
  76. 866abce clang/lib: [CMake] Reformat, alphabetize lists. by NAKAMURA Takumi · 12 years ago
  77. d30ec70 objective-c parsing. Don't crash when selector name by Fariborz Jahanian · 12 years ago
  78. 42926a0 Pedantic -pedantic correction. Duplicate cv-qualifiers are permitted in C++11 by Richard Smith · 12 years ago
  79. 5969a5f Do not warn about a function decl / direct init ambiguity if the function has a trailing return type. by Richard Smith · 12 years ago
  80. bed28ac Fix a typo (the the => the) by Sylvestre Ledru · 12 years ago
  81. eab9d6f Add diagnostics for comma at end of enum and for extra semicolon at namespace by Richard Smith · 12 years ago
  82. b67e7fc Allow the parser to recover gracefully if a typename is used to introduce a decltype type. by Francois Pichet · 12 years ago
  83. 090d1bd Fixes an ObjC++ parse crash caused by delayed parsing by Fariborz Jahanian · 12 years ago
  84. 69b5e95 Move helper class into an anonymous namespace. by Benjamin Kramer · 12 years ago
  85. b660446 80-column violations and whitespace. by Chad Rosier · 12 years ago
  86. 6749ae1 objective-c: provide fixit hint for @autoreleasepool by Fariborz Jahanian · 12 years ago
  87. 94f29f4 Better parser recovery in Objective-C containers. by Jordan Rose · 12 years ago
  88. 8a10d9f Added a new memberfor Parser, to be used soon by Fariborz Jahanian · 12 years ago
  89. 8d3ba23 Implement AST classes for comments, a real parser for Doxygen comments and a by Dmitri Gribenko · 12 years ago
  90. 39700f8 objective-c++ parsing. Turn off delayed parsing by Fariborz Jahanian · 12 years ago
  91. 478851c Drop the ASTContext.h include from Stmt.h and fix up transitive users. by Benjamin Kramer · 12 years ago
  92. b0ed95c Obj-C++11 parser: handle a fall out of delayed by Fariborz Jahanian · 12 years ago
  93. 3b5f9dc Obj-C++11 parser: fix broken parsing of c-function by Fariborz Jahanian · 12 years ago
  94. cda1041 Obj-C++11 parser: turn off buffering of by Fariborz Jahanian · 12 years ago
  95. a1eec4b objective-c: Refactor parse/sema portion of by Fariborz Jahanian · 12 years ago
  96. 6c89eaf objective-c: just as we have done for method definitions, by Fariborz Jahanian · 12 years ago
  97. 139be70 A ':' after an enum-specifier at class scope is a bitfield, not a typo for a ';'. by Richard Smith · 12 years ago
  98. f70a886 Add support for the C11 _Alignof keyword. by Jordan Rose · 12 years ago
  99. e75d9cf Use -frewrite-includes for crash reports. by David Blaikie · 12 years ago
  100. 0963017 Support the use of "=delete" and "=default" with delayed template by Douglas Gregor · 12 years ago