1. adc6cbf [MSExtensions] Add support for __forceinline. by Michael J. Spencer · 12 years ago
  2. 19a2702 Extend the error recovery for a template-argument-list terminated by '>>' to by Richard Smith · 12 years ago
  3. e30d3ff Documentation cleanup: by James Dennett · 12 years ago
  4. 50dc12a Recover when correcting an unknown type name to a keyword like "struct". by Kaelyn Uhrain · 12 years ago
  5. 7bf3340 Move isCXXSimpleTypeSpecifier from Parser to Sema and tweak it for wider use. by Kaelyn Uhrain · 12 years ago
  6. 03f1eb0 Check the parameter lists and return type of both blocks and lambdas by Douglas Gregor · 12 years ago
  7. 7a90c8b Documentation cleanup: escape Objective-C @ symbols in Doxygen comments. by James Dennett · 12 years ago
  8. b3b26bf [ms-inline-asm] The __asm keyword is a statement separator, so multiple asm by Chad Rosier · 12 years ago
  9. a01eddb [ms-inline-asm] Cleanup MS style inline assembly parsing. by Chad Rosier · 12 years ago
  10. 54655be If parsing a trailing-return-type fails, don't pretend we didn't have one at by Richard Smith · 12 years ago
  11. 8cd64b4 Etch out the code path for MS-style inline assembly. by Chad Rosier · 12 years ago
  12. 17d26a6 Documentation cleanup, fixing Doxygen markup. Mostly this avoids common terms by James Dennett · 12 years ago
  13. ca52330 PR13064: Store whether an in-class initializer uses direct or copy by Richard Smith · 12 years ago
  14. c86c40b Whenever we have a BalancedDelimiterTracker, we have a 'nested' scope by Douglas Gregor · 12 years ago
  15. facde17 Remove unused private member variables found by clang's new -Wunused-private-field. by Benjamin Kramer · 12 years ago
  16. d73ef13 Add pedantic warning -Wempty-translation-unit (C11 6.9p1). by Jordan Rose · 12 years ago
  17. 6d1de1b objc: position of 'fixit' was off by one. by Fariborz Jahanian · 12 years ago
  18. c052dbb Recognize the MS inheritance attributes and turn them into attributes by John McCall · 12 years ago
  19. 18df0eb objective-c: provide a useful 'fixit' suggestion when by Fariborz Jahanian · 12 years ago
  20. 268efba CXXThisScopeRAII objects aren't free, don't compute one if it's unused. by Benjamin Kramer · 12 years ago
  21. 5641b0d [libclang/AST] When declaring a local class, don't neglect to set the end location by Argyrios Kyrtzidis · 12 years ago
  22. 25582fc Recover better from a missing 'typename' in a function template definition. by Richard Smith · 12 years ago
  23. 4b0e6f1 Move the warnings for extra semi-colons under -Wextra-semi. Also, added by Richard Trieu · 12 years ago
  24. def0762 Include the correct conversion context locations for condition expressions. by David Blaikie · 12 years ago
  25. 7d24e28 [libclang/AST] Index references of protocols in "@protocol(...)" syntax. by Argyrios Kyrtzidis · 12 years ago
  26. 7514db2 Typo. by Richard Smith · 12 years ago
  27. 8f0a7e7 If we see a declaration which is either missing a type or has a malformed type, by Richard Smith · 12 years ago
  28. 827adaf Don't use the implicit int rule for error recovery in C++. Instead, try to by Richard Smith · 12 years ago
  29. 2375677 Recover properly from a redundant 'typename' before a non-nested name. This is by Richard Smith · 12 years ago
  30. edd2760 Don't crash when using objc boxed expression with parsing error. by Argyrios Kyrtzidis · 12 years ago
  31. 1de6a6c objective-c. Fixes a 'fixit' where location of by Fariborz Jahanian · 12 years ago
  32. a971d24 Push the knowledge that we are parsing a type-id/type-name further into the by Richard Smith · 12 years ago
  33. f63eee7 Stop AltiVec parsing from going down the 'implicit int' codepath as part of its by Richard Smith · 12 years ago
  34. 83a22ec Recover properly if a class member declaration starts with a scope specifier by Richard Smith · 12 years ago
  35. 1348967 Change how we suppress access control in explicit instantiations by John McCall · 12 years ago
  36. 9257664 Refactor DelayedDiagnostics so that it keeps diagnostics in by John McCall · 12 years ago
  37. e0d3b4c Add -Wimplicit-fallthrough warning flag, which warns on fallthrough between by Richard Smith · 12 years ago
  38. a058fd4 Revert most of r154844, which was disabled in r155975. Keep around the by Richard Smith · 12 years ago
  39. fb5825d Replace a ConsumeAnyToken() call with ConsumeToken() when we know by Douglas Gregor · 12 years ago
  40. 6deb820 Disable our non-standard delayed parsing of exception specifications. Delaying by Richard Smith · 12 years ago
  41. 1a200a8 A couple of very small tweaks suggested by Doug in reply to r155580 and r155163. by Kaelyn Uhrain · 12 years ago
  42. e531001 PR12688: ParseCXXClassMemberDeclaration's sometimes-null ThisDecl takes another by Richard Smith · 12 years ago
  43. bddc7e5 improve error recovery for extra ')'s after a if/switch/while condition. Before: by Chris Lattner · 12 years ago
  44. 8bb21d3 switch some uses of ExpectAndConsume(tok::semi to use ExpectAndConsumeSemi. This allows by Chris Lattner · 12 years ago
  45. 392b3f5 Imrpove the note text for when a non-type decl hides a tag type by Kaelyn Uhrain · 12 years ago
  46. aec2ac6 Add note to help explain why a tag such as 'struct' is needed to refer by Kaelyn Uhrain · 12 years ago
  47. 9b94cd1 Add a missing ExpressionEvaluationContext for template default arguments. Fixes PR12581. by Eli Friedman · 12 years ago
  48. 26d6023 Typo. by Chad Rosier · 12 years ago
  49. fa784da Merge with CLANG upstream r155088. by Shih-wei Liao · 12 years ago
  50. 2b2a087 Don't try to delay parsing the exception specification for a data member of a by Richard Smith · 12 years ago
  51. 0eb7526 Remove unnecessary StringRef->char*->StringRef conversion, which read uninitialized memory if the input wasn't 0-terminated. by Benjamin Kramer · 12 years ago
  52. a4156b8 Fix regression in r154844. If necessary, defer computing adjusted destructor by Richard Smith · 12 years ago
  53. 434ed26 In Parser::isCXXDeclarationSpecifier, consider a non-type identifier by Kaelyn Uhrain · 12 years ago
  54. eb382ec Implements boxed expressions for Objective-C. <rdar://problem/10194391> by Patrick Beard · 12 years ago
  55. 74e2fc3 Implement the last part of C++ [class.mem]p2, delaying the parsing of by Douglas Gregor · 12 years ago
  56. cefc3af Implement C++11 [expr.prim.general]p3, which permits the use of 'this' by Douglas Gregor · 12 years ago
  57. d306cf7 Delete late parsed attributes instead of leaking them. by Benjamin Kramer · 12 years ago
  58. 13bb701 Parser: Don't manage TemplateAnnotationIds in a delayed cleanup pool. by Benjamin Kramer · 12 years ago
  59. 534986f Add an AttributedStmt type to represent a statement with C++11 attributes by Richard Smith · 12 years ago
  60. 6a91d38 Added a flag to the parser to skip method bodies. by Erik Verbruggen · 12 years ago
  61. 994d73f Part of PR10101: after a parse error in a declaration, try harder to find the by Richard Smith · 12 years ago
  62. 6ce48a7 Support C++11 attributes at the start of a parameter-declaration. by Richard Smith · 12 years ago
  63. 2c6dbd7 Fix GCC's pedantic return-type warning -- this enum is fully covered. by Chandler Carruth · 12 years ago
  64. c56298d Parsing of C++11 attributes: by Richard Smith · 12 years ago
  65. 6ee326a Disambiguation of '[[': by Richard Smith · 12 years ago
  66. eb52f86a Fix bugs found by -Wconstant-conversion improvements currently under review. by David Blaikie · 12 years ago
  67. b031eab Remove "parse error" in favor of more descriptive diagnostics. by David Blaikie · 12 years ago
  68. b2f6820 Added a new attribute, objc_root_class, which informs the compiler when a root class is intentionally declared. by Patrick Beard · 12 years ago
  69. cf2fa2f Fixed scoping error for late parsed attributes in nested classes. by DeLesley Hutchins · 12 years ago
  70. 9df1b96 Restrict fixit for missing 'class' in template template parameters. by David Blaikie · 12 years ago
  71. a823545 Improve & simplify diagnostic for missing 'class' in template template parameter. by David Blaikie · 12 years ago
  72. 5a5a971 For PR11916: Add support for g++'s __int128 keyword. Unlike __int128_t, this is by Richard Smith · 12 years ago
  73. 73f428c Enter an expression evaluation context when parsing by John McCall · 12 years ago
  74. 219c2e2 Remove windows line endings. by David Blaikie · 12 years ago
  75. 460ef13 Correct error recovery when missing 'class' in a template template parameter. by David Blaikie · 12 years ago
  76. 9988f28 Reject 'template<typename...Ts> void f(Ts ...(x));'. Add a special-case by Richard Smith · 12 years ago
  77. 2259286 If we see '(...' where we're expecting an abstract-declarator, that doesn't by Richard Smith · 12 years ago
  78. 5d8388c Add cross-referencing comments to ParseDirectDeclarator to note that by Richard Smith · 12 years ago
  79. 412e0cc When we see 'Class(X' or 'Class::Class(X' and we suspect that it names a by Richard Smith · 12 years ago
  80. 1eff209 Fix the tabs. Fix the spaces. by Shih-wei Liao · 12 years ago
  81. 560ad31 Migrate external/clang to CLANG-153220-20120321. by Shih-wei Liao · 12 years ago
  82. d316862 Merge branch 'upstream' into sliao_d by Shih-wei Liao · 12 years ago
  83. 5d5ed59 [parser] If there are unmatched braces in a function definition, try to by Argyrios Kyrtzidis · 12 years ago
  84. 1af83c4 Support for definitions of member enumerations of class templates outside the by Richard Smith · 12 years ago
  85. ca89371 Fix the other place where C++98 work for initializer lists was necessary. by Sebastian Redl · 12 years ago
  86. 3e280b5 Add the missing compatibility warning for braced initializers as default arguments. by Sebastian Redl · 12 years ago
  87. e55329d From Vassil Vassilev: by Axel Naumann · 12 years ago
  88. 6d96d3a Small cleanup: move trailing-return-type special-casing into by Richard Smith · 12 years ago
  89. 84407ba Parse brace initializers as default arguments. PR12236. by Sebastian Redl · 12 years ago
  90. 6f42669 Fix a crash-on-invalid found by -Wlogical-op-parentheses. by David Blaikie · 12 years ago
  91. 7796eb5 Fix parsing of trailing-return-type. Types are syntactically prohibited from by Richard Smith · 12 years ago
  92. 69730c1 Fix parsing of type-specifier-seq's. Types are syntactically allowed to be by Richard Smith · 12 years ago
  93. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 12 years ago
  94. 93a7067 Document the availability attribute by Douglas Gregor · 12 years ago
  95. 36f5cfe Support for raw and template forms of numeric user-defined literals, by Richard Smith · 12 years ago
  96. 3376277 Fix a couple of issues with literal-operator-id parsing, and provide recovery by Richard Smith · 12 years ago
  97. d78ef5b Streamline BalancedDelimiterTracker, by eliminating the duplicate by Douglas Gregor · 12 years ago
  98. 8b8d953 Silence unused variable warnings. by Benjamin Kramer · 12 years ago
  99. e53ac8a Refactor Clang sema attribute handling. by Michael Han · 12 years ago
  100. ebcb57a Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, by Ted Kremenek · 12 years ago