1. feb375d Implement the __is_trivially_copyable type trait by Sean Hunt · 13 years ago
  2. e4246a6 Properly parse the 'default' and 'delete' keywords. by Sean Hunt · 13 years ago
  3. 6a24747 In Microsoft mode, allow pure specifier (=0) on inline functions declared at class scope. by Francois Pichet · 13 years ago
  4. 023df37 Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and by Sean Hunt · 13 years ago
  5. 373197b Don't fail at parsing __declspec(property(get=get_func_name)). Just skip everything inside property() for now while we wait for the BoostPro people to provide a complete patch. by Francois Pichet · 13 years ago
  6. f986038 Add support for _if_exists and __if_not_exists at namespace/global scope. by Francois Pichet · 13 years ago
  7. bb85f8e Per Richard's suggestion, rename DefLoc to DefaultLoc where it appears. by Sean Hunt · 13 years ago
  8. 1e86269 Add support for Microsoft __if_exists and __if_not_exists construct inside function definition. by Francois Pichet · 13 years ago
  9. fe2695e Do defaulted constructors properly. by Sean Hunt · 13 years ago
  10. 5f802e5 Revert r130912 in order to approach defaulted functions from the other by Sean Hunt · 13 years ago
  11. 536e9c1 Slight tweak to alias template error handling: don't guess that a template-id in an alias declaration was meant to be a specialization. Use a generic, but more accurate, diagnostic. by Richard Smith · 13 years ago
  12. 3e4c6c4 Implement support for C++0x alias templates. by Richard Smith · 13 years ago
  13. ad7ec12 Implement some framework for defaulted constructors. by Sean Hunt · 13 years ago
  14. a6e09bb Remove unused but set variable. by Benjamin Kramer · 13 years ago
  15. eccce7e Fix a double free when parsing malformed code. Fixes rdar://9173693. by Argyrios Kyrtzidis · 13 years ago
  16. 0f4be74 When parsing a template friend declaration we dropped the template by Chandler Carruth · 13 years ago
  17. f41e33c Fixed source range for extern linkage specification without braces. by Abramo Bagnara · 13 years ago
  18. 98fa94d Remove the type traits UTT_IsLvalueExpr and UTT_IsRvalueExpr. by Chandler Carruth · 13 years ago
  19. b467cda White-list yet more type trait names, since they're used as by Douglas Gregor · 13 years ago
  20. 877222e libstdc++ 4.2 also uses __is_same as a struct name, which conflicts with our new type trait __is_same by Douglas Gregor · 13 years ago
  21. bfad915 libstdc++ 4.4 uses __is_signed as an identifier, while Clang treats it by Douglas Gregor · 13 years ago
  22. d7f02df SEH was crashing under -fms-extensions. by Francois Pichet · 13 years ago
  23. 338d7f7 Upgrade Microsoft's __int8, __int16, __int32 and __int64 types from builtin defines to real types. by Francois Pichet · 13 years ago
  24. 28bbe4b Parsing/AST support for Structured Exception Handling by John Wiegley · 13 years ago
  25. 21ff2e5 Implementation of Embarcadero array type traits by John Wiegley · 13 years ago
  26. 20c0da7 t/clang/type-traits by John Wiegley · 13 years ago
  27. 5ecdd78 Introduce a new parser annotation token for primary expressions. When by Douglas Gregor · 13 years ago
  28. d0719b1 Clean out some cruft I introduced when adding Sema::ClassifyName() by Douglas Gregor · 13 years ago
  29. d9d75e5 Simplify the parser's handling of Sema::ClassifyName() for types, by by Douglas Gregor · 13 years ago
  30. b7d98d3 If a null statement was preceded by an empty macro keep its instantiation source location by Argyrios Kyrtzidis · 13 years ago
  31. 3b88735 Extend Sema::ClassifyName() to support C++, ironing out a few issues by Douglas Gregor · 13 years ago
  32. 62c9258 Recognize gcc's ms_struct pragma (and ignore for now). This is wip. by Fariborz Jahanian · 13 years ago
  33. ec385cf When Sema::ClassifyName() finds an invalid ivar reference, return an by Douglas Gregor · 13 years ago
  34. 81542fd Remove some more hard CR-LF lines. These were particularly weird as they were by Chandler Carruth · 13 years ago
  35. 5526220 t/clang/expr-traits by John Wiegley · 13 years ago
  36. d941fa4 Make the invalid declarator recovery when parsing members work the same as when parsing global decls. It's still rather broken (skipping much too far when the declarator belongs to a function definition), but at least not so broken as to mismatch braces. Tested by the removal of the fixme in the template test case. by Sebastian Redl · 13 years ago
  37. a5d318a Downgrade unnecessary "typename" from error to warning in Microsoft mode. by Francois Pichet · 13 years ago
  38. 312eadb Implement a new identifier-classification scheme where Sema by Douglas Gregor · 13 years ago
  39. 3840281 Add support for '__is_literal_type' spelling of the existing by Chandler Carruth · 13 years ago
  40. 4a47e8d Remove unnecessary const away cast in LateTemplateParserCallback. by Francois Pichet · 13 years ago
  41. b7e9589 Implement basic __is_trivial type-trait support, enough to close PR9472. by Chandler Carruth · 13 years ago
  42. 4e61ddd Sort the type traits in a few places where they weren't previously by Chandler Carruth · 13 years ago
  43. b6b2b18 Fix an assertion when code-completing, rdar://9288730 & http://llvm.org/PR9728. by Argyrios Kyrtzidis · 13 years ago
  44. d4a0caf Correctly emit a diagnostic for multiple templated function definitions in -flate-template-parsing mode. by Francois Pichet · 13 years ago
  45. 8387e2a Add -fdelayed-template-parsing option. Using this option all templated function definitions are parsed at the end of the translation unit only if it is required by an actual instantiation. As such all the symbols of the TU are available during name lookup. by Francois Pichet · 13 years ago
  46. 64089ce Fixes an instance method meta-data generation bug in by Fariborz Jahanian · 13 years ago
  47. cf320c6 For consistency, change suffix from war_ to warn_ for some Microsoft warnings I introduced lately. by Francois Pichet · 13 years ago
  48. 46f1110 Fix gcc warning. Add parens to this assert, incidentally reassociating it, but the condition is the same either way. by Richard Smith · 13 years ago
  49. bb9b80c Add a fixit suggest for missing case keywords inside a switch scope. For instance, in the following code, 'case ' will be suggested before the '1:' by Richard Trieu · 13 years ago
  50. b8a9d3b Fixit suggestion for adding missing tag name should have a space after the tag name. Fixes rdar://9295072 by Argyrios Kyrtzidis · 13 years ago
  51. e106a0b Avoid superfluous warning after an error is detcted and reported. by Fariborz Jahanian · 13 years ago
  52. 893e1cc Parse GNU-style attributes prior to the type-id/new-type-id in a C++ by Douglas Gregor · 13 years ago
  53. 162e1c1 Support for C++11 (non-template) alias declarations. by Richard Smith · 13 years ago
  54. fc8f0e1 fix a bunch of comment typos found by codespell. Patch by by Chris Lattner · 13 years ago
  55. c6eb44b C1X: implement static asserts by Peter Collingbourne · 13 years ago
  56. f111d93 C1X: implement generic selections by Peter Collingbourne · 13 years ago
  57. b38b6a7 Do not expand the opencl pragma names. This is so you can also have a define named the samed as the pragma and they do not interfere (ie. cl_khr_fp64). by Tanya Lattner · 13 years ago
  58. 87f1064 If the declaration of a C++ member function with an inline definition by Douglas Gregor · 13 years ago
  59. ad762fc Add support for C++0x's range-based for loops, as specified by the C++11 draft standard (N3291). by Richard Smith · 13 years ago
  60. ea698b3 Detect when the string "<::" is found in code after a cast or template name and is interpreted as "[:" because of the digraph "<:". When found, give an error with a fix-it to add whitespace between the "<" and "::". by Richard Smith · 13 years ago
  61. 8a9013d Parse an '@' in an Objective-C++ class member specification, by Douglas Gregor · 13 years ago
  62. a5fc472 Fix a bunch of major problems with __unknown_anytype and properly test by John McCall · 13 years ago
  63. b3c4906 Diagnose a missing ')' on what looks like a statement expression. by John McCall · 13 years ago
  64. 4147d30 Improve recovery (error + fix-it) when parsing type dependent template name without the "template" keyword. by Francois Pichet · 13 years ago
  65. 3b3e1a9 fix the second part of rdar://8366474 - clang fails to parse ObjC selectors with '::', when :: isn't the first part of the selector. by Chris Lattner · 13 years ago
  66. b53e417 Extend the new 'availability' attribute with support for an by Douglas Gregor · 13 years ago
  67. 7da19ea Fix the recovery from missing semis on @property declarations to not consume by John McCall · 13 years ago
  68. 1d20927 Fixup comments. by Anders Carlsson · 13 years ago
  69. 8a29ba0 Remove the last of ClassVirtSpecifiers. by Anders Carlsson · 13 years ago
  70. b184a18 Replace the call to ParseOptionalCXX0XClassVirtSpecifierSeq with code to only parse an optional 'final' keyword. by Anders Carlsson · 13 years ago
  71. 2c3ee54 Get rid of handling of the 'explicit' keyword from class-head. We still parse it though, although that will change shortly. by Anders Carlsson · 13 years ago
  72. 844c25d Remove warnings about using override control keywords in inline function definitions; they will be allowed in the next C++0x draft. by Anders Carlsson · 13 years ago
  73. b1f3968 Remove 'new' from virt-specifier since it's going to be removed in the next C++0x draft by Anders Carlsson · 13 years ago
  74. 0b7e678 Insomniac refactoring: change how the parser allocates attributes so that by John McCall · 13 years ago
  75. c05a94b Call out ObjC parameter types as a different kind of declarator context by John McCall · 13 years ago
  76. 0a0d2b1 Implement a new 'availability' attribute, that allows one to specify by Douglas Gregor · 13 years ago
  77. 614f96a Migrate 'PrettySTackTraceParserEntry' object out of Parser, and have it constructed within ParseAST. This avoids double crashes by Ted Kremenek · 13 years ago
  78. 207f4d8 Add support for language-specific address spaces. On top of that, by Peter Collingbourne · 13 years ago
  79. 934a571 Construct 'Sema' object on the stack, so that crash recovery can recovery it's associated resources without walking over dead stack space. by Ted Kremenek · 13 years ago
  80. 965fe84 Use CrashRecoveryContextCleanup objects to release resources associated with Sema during a crash while parsing. by Ted Kremenek · 13 years ago
  81. 0daaf32 Use ElaboratedType also for C. by Abramo Bagnara · 13 years ago
  82. c9977d0 Make sure that we always pop a function's scope *before* we call by Douglas Gregor · 13 years ago
  83. 18d8b79 Disable 'auto' type deduction in Objective-C. It likes 'id' a bit too by Douglas Gregor · 13 years ago
  84. 90ba78c Place duplicate argument declaration in in by Fariborz Jahanian · 13 years ago
  85. 60618fa Propagate the new exception information to FunctionProtoType. by Sebastian Redl · 13 years ago
  86. 796aa44 Forgotten part of previous commit. by Abramo Bagnara · 13 years ago
  87. fadb53b Fixes for some more expressions containing function templateids that by Douglas Gregor · 13 years ago
  88. 6f4596c Implement a hack intended to allow Clang to parse libstdc++ 4.5's by Douglas Gregor · 13 years ago
  89. f4e3cfb Add support for the OpenCL vec_step operator, by generalising and by Peter Collingbourne · 13 years ago
  90. b77cab9 Clarify the context in which an Objective-C type name is being parsed by Douglas Gregor · 13 years ago
  91. a2026c9 Fixed source range for StaticAssertDecl and LinkageSpecDecl. Fixed source range for declarations using postfix types. by Abramo Bagnara · 13 years ago
  92. acba90f Fixed NamespaceDecl source range. by Abramo Bagnara · 13 years ago
  93. 6e5d319 Propagate new-style exception spec information to Declarator. by Sebastian Redl · 13 years ago
  94. 6784304 Fixed LabelDecl source range and cleaned creation code. by Abramo Bagnara · 13 years ago
  95. 7acafd0 Parser support for noexcept specifications. by Sebastian Redl · 13 years ago
  96. 6cd9d4a Teach Sema::ActOnCXXNestedNameSpecifier and Sema::CheckTemplateIdType by Douglas Gregor · 13 years ago
  97. 21e006e Fixed source range for FileScopeAsmDecl. Others source range fixes will follow. by Abramo Bagnara · 13 years ago
  98. 059101f Push nested-name-specifier source-location information into dependent by Douglas Gregor · 13 years ago
  99. 9e87687 Reinstate the introduction of source-location information for by Douglas Gregor · 13 years ago
  100. 2786864 Revert r126748, my second attempt at nested-name-specifier source by Douglas Gregor · 13 years ago