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