1. c2ac68e Remove unused variable. by Benjamin Kramer · 11 years ago
  2. 37453b9 Add support for the OpenCL attribute 'vec_type_hint'. by Joey Gouly · 11 years ago
  3. 684aa73 [Sema] Semantic analysis for empty-declaration and attribute-declaration. by Michael Han · 12 years ago
  4. 672edb0 Don't accidentally and silently accept C++11 attributes in decl-specifier-seqs by Richard Smith · 12 years ago
  5. 68ea3ae Per the grammar in [dcl.dcl]p1, a simple-declaration can only have attributes by Richard Smith · 12 years ago
  6. f6565a9 Handle alignas(foo...) pack expansions. by Richard Smith · 12 years ago
  7. 150d853 Don't skip '_Alignas' when disambiguating 'final'. '_Alignas' can't appear here, by Richard Smith · 12 years ago
  8. 1f12c47 [libclang] Fix a crash with invalid code, while skip function bodies is enabled. by Argyrios Kyrtzidis · 12 years ago
  9. 9e738cc Add -fbracket-depth=N, analogous to -ftemplate-depth= and -fconstexpr-depth=, by Richard Smith · 12 years ago
  10. 66874fb Use None rather than Optional<T>() where possible. by David Blaikie · 12 years ago
  11. dc84cd5 Include llvm::Optional in clang/Basic/LLVM.h by David Blaikie · 12 years ago
  12. 30f2a74 PR15311: Finish implementation of the suggested resolution of core issue 1488, by Richard Smith · 12 years ago
  13. 6b3d3e5 Process and handle attributes on conditions and for loop variables. Process and by Richard Smith · 12 years ago
  14. 975d52c Don't repeat the function name in the comment. by Richard Smith · 12 years ago
  15. 0532140 PR15300: Support C++11 attributes on base-specifiers. We don't support any such by Richard Smith · 12 years ago
  16. 820b23d When a statement is dropped from the AST because it was invalid, make sure by Argyrios Kyrtzidis · 12 years ago
  17. 1b9e8f7 Accept over-qualified constructor in MSVC emulation mode by Dmitri Gribenko · 12 years ago
  18. 3f6f51e Excise <cctype> from Clang (except clang-tblgen) in favor of CharInfo.h. by Jordan Rose · 12 years ago
  19. ed4330b Thread safety analysis: make sure that expressions in attributes are parsed by DeLesley Hutchins · 12 years ago
  20. 21f18c4 Add OpenCL samplers as Clang builtin types and check sampler related restrictions. by Guy Benyei · 12 years ago
  21. a5236b9 Micro change: moved '{' for better readability (+don't confuse -Wimplicit-fallthrough) by Alexander Kornienko · 12 years ago
  22. 1d87fba Provide a fixit for constexpr non-static data members. by David Blaikie · 12 years ago
  23. a0109e2 Produce a diagnostic if alignas is applied to an expression. Neither C11 nor by Richard Smith · 12 years ago
  24. d03de6a Downgrade 'attribute ignored when parsing type' from error to warning, to match by Richard Smith · 12 years ago
  25. 4cd81c5 Implement C++11 [dcl.align]p1 and C11 6.7.5/2 rules for alignas and _Alignas. by Richard Smith · 12 years ago
  26. 8338a9d PR15017: A '>' can appear after a type-specifier in a template-argument-list. by Richard Smith · 12 years ago
  27. 33f04a2 Treat alignas and _Alignas as keyword attributes. This allows us to by Richard Smith · 12 years ago
  28. 5cd532c Replace AS_MSTypespec with AS_Keyword, for representing any attribute spelled by Richard Smith · 12 years ago
  29. 3a2b7a1 Finish semantic analysis for [[carries_dependency]] attribute. by Richard Smith · 12 years ago
  30. db55c04c Give a more informative error message when the dot or arrow operator is used by Richard Trieu · 12 years ago
  31. b2e2157 [ms-inline asm] Remove the -fenable-experimental-ms-inline-asm flag. MS-style by Chad Rosier · 12 years ago
  32. 48f3cc2 objectiveC (take two): don't warn when in -Wselector mode and by Fariborz Jahanian · 12 years ago
  33. c666cf4 [ms-inline asm] Remove a warning about ms-style inline assembly not being by Chad Rosier · 12 years ago
  34. f11ccc1 objectiveC: don't warn when in -Wselector mode and by Fariborz Jahanian · 12 years ago
  35. e6b9d80 Implement OpenCL event_t as Clang builtin type, including event_t related OpenCL restrictions (OpenCL 1.2 spec 6.9) by Guy Benyei · 12 years ago
  36. ba65f50 Fix five more cases of tokens which can legally follow a type specifier. by Richard Smith · 12 years ago
  37. 55fc3a7 Fix parsing of class specifiers before '\n' 'operator'. by Nico Weber · 12 years ago
  38. de03c15 Parsing support for C11's _Noreturn keyword. No semantics yet. by Richard Smith · 12 years ago
  39. 93c8617 ArrayRef-ize some ctor initializer related APIs by David Blaikie · 12 years ago
  40. cd8ab51 Implement C++11 semantics for [[noreturn]] attribute. This required splitting by Richard Smith · 12 years ago
  41. d3e723e PR14918: Don't confuse braced-init-lists after template variable declarations by Richard Smith · 12 years ago
  42. 4195637 Refactor to call ActOnFinishFullExpr on every full expression. Teach by Richard Smith · 12 years ago
  43. 7b19cb1 *this is const in a trailing-return-type for a constexpr member function. by Richard Smith · 12 years ago
  44. cfa88f8 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 12 years ago
  45. ebf0fa8 Pass false instead of 0 since isStar parameter of getArray has type bool. No functionality change. by Nikola Smiljanic · 12 years ago
  46. 898dd70 Remove the unused Parser::ParseTranslationUnit function by Hal Finkel · 12 years ago
  47. 6a502c4 PR14855: don't silently swallow a nested-name-specifier after a type name. by Richard Smith · 12 years ago
  48. 0777cf5 Tighten types a bit. No functionality change. by Rafael Espindola · 12 years ago
  49. fc35cbc Tighten types a bit. No functionality change. by Rafael Espindola · 12 years ago
  50. 07fc1ba Add fixit hints for misplaced C++11 attributes around class specifiers. by Michael Han · 12 years ago
  51. 4e24f0f s/CXX0X/CXX11/g, except for __GNU_EXPERIMENTAL_CXX0X__, and update a few nearby 'C++0x' comments. by Richard Smith · 12 years ago
  52. 80ad52f s/CPlusPlus0x/CPlusPlus11/g by Richard Smith · 12 years ago
  53. d32b94d Remove some remnants of OwningExprResult / OwningStmtResult. by Nico Weber · 12 years ago
  54. d11f435 Simplify. No functionality change. by Nico Weber · 12 years ago
  55. 20af49a Minor cleanup. by Rafael Espindola · 12 years ago
  56. 22aa690 Remove unused arguments and rename to conform to coding standards. by Chad Rosier · 12 years ago
  57. ccbb402 Indent. by Chad Rosier · 12 years ago
  58. 9cab1c9 Remove unnecessary checks. by Chad Rosier · 12 years ago
  59. eb4c01e Fix indent. by Chad Rosier · 12 years ago
  60. 16f90bf Use the MaybeParseMicrosoftAttributes function. by Chad Rosier · 12 years ago
  61. 9096102 Move operator precedence calculation to new header by Daniel Jasper · 12 years ago
  62. ad017fa Revert r170500. It over-zealously converted *ALL* things named Attributes, which is wrong here. by Bill Wendling · 12 years ago
  63. 094dbf9 Rename the 'Attributes' class to 'Attribute'. It's going to represent a single attribute in the future. by Bill Wendling · 12 years ago
  64. b13621d Re-commit r170428 changes with Linux style file endings. by Guy Benyei · 12 years ago
  65. 7f92f2d Revert changes from r170428, as I accidentally changed the line endings of these files to Windows style. by Guy Benyei · 12 years ago
  66. 736104a Add OpenCL images as clang builtin types. by Guy Benyei · 12 years ago
  67. 7d033b2 [parser] Push a semi token for recovery only when it is actually missing. by Argyrios Kyrtzidis · 12 years ago
  68. b707a47 Don't require a space between the two ">" in "vector<id<protocol>>" in objc++11. by Nico Weber · 12 years ago
  69. 001397e fix spello by Nico Weber · 12 years ago
  70. 1b257af Use @import rather than @__experimental_modules_import, since the by Douglas Gregor · 12 years ago
  71. 569cdc8 PR14549. Don't assert if we see an incomplete decltype specifier at the end of the file. by Richard Smith · 12 years ago
  72. 35f3f36 Add a bit on FunctionDecl/ObjCMethodDecl to indicate if there was a body by Argyrios Kyrtzidis · 12 years ago
  73. 15490fd [driver, ms-inline asm] MS-Style inline assembly is controlled by the by Chad Rosier · 12 years ago
  74. 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 12 years ago
  75. 9852f58 Don't include Type.h in DeclarationName.h. by Benjamin Kramer · 12 years ago
  76. bba91b8 Fix sentence construction-o. by Nico Weber · 12 years ago
  77. 52b501c Implement C++11 [dcl.attr.grammar] p4: If an attribute-specifier-seq appertains to a friend declaration, that declaration shall be a definition. by Michael Han · 12 years ago
  78. f88836d Move PrettyStackTraceParserEntry to ParseAST.cpp by Nico Weber · 12 years ago
  79. 2e39713 Improve diagnostic on C++11 attribute specifiers that appear at wrong syntactic locations around class specifiers. by Michael Han · 12 years ago
  80. 1a5bd5d PR14381: Never skip constexpr function bodies when code-completing. We may need by Richard Smith · 12 years ago
  81. 97f8461 Made the "expected string literal" diagnostic more expressive by Andy Gibbs · 12 years ago
  82. 6f9a445 PR9903: Recover from a member functon declared with the 'typedef' specifier by by Richard Smith · 12 years ago
  83. 5a95d46 ParseTemplate.cpp: Prune obsolete descriptions in ParseSingleDeclarationAfterTemplate(), for now. [-Wdocumentation] by NAKAMURA Takumi · 12 years ago
  84. 384d3fc ParseTemplate.cpp: Doxygen fix in AnnotateTemplateIdToken(). [-Wdocumentation] by NAKAMURA Takumi · 12 years ago
  85. b8a8de3 Accept and pass arguments to __unknown_anytype in argument by John McCall · 12 years ago
  86. e5afdcf Simplify function try/catch scope handling. by David Blaikie · 12 years ago
  87. 3a9fefe Fix more try scoping bugs introduced by r167650. by David Blaikie · 12 years ago
  88. c4027c8 PR14296: function parameter name collisions in function try/catch by David Blaikie · 12 years ago
  89. b578aee PR12713 - crash on invalid due to unmatched parens in decltype by David Blaikie · 12 years ago
  90. f64231e Teach Clang parser to reject C++11 attributes that appertain to declaration specifiers. by Michael Han · 12 years ago
  91. c7be102 Have the parser initialize Sema before it consumes the first by Douglas Gregor · 12 years ago
  92. a60d21d Support interleaving of other pragmas with FP_CONTRACT at the beginning of a by Lang Hames · 12 years ago
  93. 161db02 Thread safety analysis: Fixed ICE caused by double delete when late parsed by DeLesley Hutchins · 12 years ago
  94. cef3a7b Change diagnostics for enums with fixed underlying type so in C++98 mode, we cite C++11. by Eli Friedman · 12 years ago
  95. 919b955 When finding a '(' after '::', emit error with hint to remove '(' and matching by Richard Trieu · 12 years ago
  96. 81939a7 If skipping bodies is enabled outside code-completion, just skip the body directly by Argyrios Kyrtzidis · 12 years ago
  97. 25893e0 Decouple code-completion for the SkipFunctionBodies frontend option and by Argyrios Kyrtzidis · 12 years ago
  98. e1bb329 Fix crash on missing namespace name in namespace alias definition -- PR14085. by Nico Weber · 12 years ago
  99. 2b970e9 Currently the initial value of Tok is dependent an the stack contents by Chris Lattner · 12 years ago
  100. 286d623 Reverted back the changes made in 166868 and in 166869 by Mahesha S · 12 years ago