1. 0486d74 Add Parser support for C++0x literal operators ('operator "" i'). by Sean Hunt · 15 years ago
  2. 89c49f0 Make sure that Type::getAs<ArrayType>() (or Type::getAs<subclass of by Douglas Gregor · 15 years ago
  3. c7621a6 Be a little more careful when trying to extract a TypeDecl from a enum/class/struct/union specifier; in invalid code, we may also see ClassTemplateDecls. by Douglas Gregor · 15 years ago
  4. 923d56d Allow the element type of arrays to be incomplete in C++. by Sebastian Redl · 15 years ago
  5. 87c12c4 Store the unresolved class type in MemberPointerType's Class field, by Douglas Gregor · 15 years ago
  6. 54abf7d Change our basic strategy for avoiding deprecation warnings when the decl use by John McCall · 15 years ago
  7. 3f9a056 Introduce a new class, UnqualifiedId, that provides a parsed by Douglas Gregor · 15 years ago
  8. ac40605 Include pointee type information in the diagnostic for creating bad pointers or by John McCall · 15 years ago
  9. 833ca99 Track source information for template arguments and template specialization by John McCall · 15 years ago
  10. 972e6ce Only set the point of instantiation for an implicit or explicit by Douglas Gregor · 15 years ago
  11. 5233826 Implement rdar://6756623 - use of deprecated type in deprecated typedef should not warn by Chris Lattner · 15 years ago
  12. a64ef0a move calls to DiagnoseUseOfDecl (which warns about deprecated/unavailable by Chris Lattner · 15 years ago
  13. 8ce35b0 Remove the Skip parameter from GetTypeForDeclarator and dependents. Take the opportunity to improve an error message and fix PR4498. by Sebastian Redl · 15 years ago
  14. 311157f move the extwarn about using long long out of the entry of by Chris Lattner · 15 years ago
  15. 5db2bb1 simplify interface to ConvertDeclSpecToType, check for inferred by Chris Lattner · 15 years ago
  16. 1564e39 change ConvertDeclSpecToType to be a static function in SemaType.cpp by Chris Lattner · 15 years ago
  17. 778ed74 various cleanups for SemaType.cpp by Chris Lattner · 15 years ago
  18. 54e14c4 When building types from declarators, instead of building two types (one for by John McCall · 15 years ago
  19. 573d9c3 Don't (directly) call RequireCompleteType with an invalid source location. by Douglas Gregor · 15 years ago
  20. 51bd803 Clone the full Type hierarchy into the TypeLoc hierarchy. Normalize by John McCall · 15 years ago
  21. 46a617a Remove the ConstantArrayType subtypes. This information is preserved in the by John McCall · 15 years ago
  22. 34a0447 Better living through metaprogramming. Create a base class which abstracts by John McCall · 15 years ago
  23. b3ae4fc Diagnose the declaration of explicit specializations after an implicit by Douglas Gregor · 15 years ago
  24. dced226 Test exception spec compatibility on return type and parameters. by Sebastian Redl · 15 years ago
  25. 2c7588f Implement the core checking for compatible exception specifications in assignment and initialization. by Sebastian Redl · 15 years ago
  26. 6e24726 Qualified lookup through using declarations. Diagnose a new type of ambiguity. by John McCall · 15 years ago
  27. 8c8d919 Add CheckCallReturnType and start using it for regular call expressions. This will improve error messages. For by Anders Carlsson · 15 years ago
  28. f6b1185 Improve checking for specializations of member classes of class by Douglas Gregor · 15 years ago
  29. a8f32e0 Refactor the code that walks a C++ inheritance hierarchy, searching by Douglas Gregor · 15 years ago
  30. eb66759 Introduce ObjCInterfaceLoc which provides type source information for ObjC interfaces. by Argyrios Kyrtzidis · 15 years ago
  31. f352bdd Introduce ObjCProtocolListLoc for keeping source location information for protocol references. by Argyrios Kyrtzidis · 15 years ago
  32. db422df Declarators can now properly represent template-ids, e.g., for by Douglas Gregor · 15 years ago
  33. 0953e76 Refactor the representation of qualifiers to bring ExtQualType out of the by John McCall · 15 years ago
  34. 183700f Change all the Type::getAsFoo() methods to specializations of Type::getAs(). by John McCall · 15 years ago
  35. 83913e3 When creating function types, remove any top-level CVR qualifications in the function type argument types. by Anders Carlsson · 15 years ago
  36. 9cc7807 Track a class template specialization's point of instantiation separately by John McCall · 15 years ago
  37. 043cad2 Diagnose VLAs as an error in C++. by Douglas Gregor · 15 years ago
  38. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  39. 2191b20 Start emitting ElaboratedTypes in C++ mode. Support the effort in various by John McCall · 15 years ago
  40. d0e3daf Improve the AST representation and semantic analysis for extern by Douglas Gregor · 15 years ago
  41. 31590f9 Fix the start source location for type-specs like long, short, etc. by Argyrios Kyrtzidis · 15 years ago
  42. 357bbd0 Tighten up the conversion from a single-level template argument list by Douglas Gregor · 15 years ago
  43. b790661 Bye-bye old RequireCompleteType. by Anders Carlsson · 15 years ago
  44. c566423 Remove another unused argument. by Anders Carlsson · 15 years ago
  45. d497ba7 Remove the PrintType argument from RequireCompleteType. by Anders Carlsson · 15 years ago
  46. 91a0cc9 Add a RequireCompleteType variant that takes a PartialDiagnostic. The old RequireCompleteType now creates a PartialDiagnostic and calls the new function. by Anders Carlsson · 15 years ago
  47. 5842ba9 Try to complete a type before looking for conversion functions within by Douglas Gregor · 15 years ago
  48. a95d757 Make integer promotions work correctly on PIC16 and other platforms by Eli Friedman · 15 years ago
  49. 35d44e5 Fix a comment and improve an assert message. by Argyrios Kyrtzidis · 15 years ago
  50. e866190 Use Sema's LocInfoType to pass and preserve type source info through the Parser. by Argyrios Kyrtzidis · 15 years ago
  51. 1bb8a45 Introduce LocInfoType which is a Sema-specific implementation detail. by Argyrios Kyrtzidis · 15 years ago
  52. 4adab7f Create and instantiate a DeclaratorInfo using a newly introduced Sema::GetDeclaratorInfoForDeclarator(). by Argyrios Kyrtzidis · 15 years ago
  53. a1d5662 Introduce DeclaratorDecl and pass DeclaratorInfo through the Decl/Sema interfaces. by Argyrios Kyrtzidis · 15 years ago
  54. 33a3138 Get rid of "smart" quotes. Per report on cfe-dev. by Eli Friedman · 15 years ago
  55. 6217b80 Change uses of: by Ted Kremenek · 15 years ago
  56. efadb77 Bounds checking for address spaces. by John McCall · 15 years ago
  57. 2455636 Add noreturn as a type attribute, handle printing for them and handle by Mike Stump · 15 years ago
  58. 470301b Fix <rdar://problem/6770276> Support Class<Proto> syntax. by Steve Naroff · 15 years ago
  59. f59a56e Basic parsing and semantic analysis for out-of-line definitions of the by Douglas Gregor · 15 years ago
  60. 67ef8ea 5 cleanups to ObjCObjectPointerType work: by Steve Naroff · 15 years ago
  61. c15cb2a Remove ObjCQualifiedInterfaceType:-) by Steve Naroff · 15 years ago
  62. 726212f Enhance testing of overriding exception specs for inaccessible base exceptions. by Sebastian Redl · 15 years ago
  63. 35366a6 Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods by Ted Kremenek · 15 years ago
  64. 5cad1f7 Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), Type::getAsMemberPointerType(), Type::getAsTagType(), and Type::getAsRecordType() with their Type::getAs<XXX> equivalents. by Ted Kremenek · 15 years ago
  65. 808825c Replace Type::getAsReferenceType() with Type::getAs<ReferenceType>(). by Ted Kremenek · 15 years ago
  66. 1a1a6e2 Add member template 'Type::getAs<T>', which converts a Type* to a respective T*. by Ted Kremenek · 15 years ago
  67. f5c209d Basic support for C++0x unicode types. Support for literals will follow in an incremental patch by Alisdair Meredith · 15 years ago
  68. 14108da This patch includes a conceptually simple, but very intrusive/pervasive change. by Steve Naroff · 15 years ago
  69. 23c7d06 Implement checking of exception spec compatibility for overriding virtual functions. by Sebastian Redl · 15 years ago
  70. 7e7eb3d Keep track of the Expr used to describe the size of an array type, by Douglas Gregor · 15 years ago
  71. 4994d2d Catch function redeclarations with incompatible exception specifications. by Sebastian Redl · 15 years ago
  72. 8d4655d Make an error message more clear. by Anders Carlsson · 15 years ago
  73. af017e6 Improvements to decltype. We now don't crash anymore when the expr is an overloaded function decl. by Anders Carlsson · 15 years ago
  74. 74add6d Remove some dead code by Anders Carlsson · 15 years ago
  75. 683087f Remove ASTContext::getObjCQualifiedIdType(). by Steve Naroff · 15 years ago
  76. baf45d3 More auto work. by Anders Carlsson · 15 years ago
  77. e7cf07d Can't have arrays of auto. by Anders Carlsson · 15 years ago
  78. e89d159 Implement enough of the 'auto' keyword so we can claim to support N2546. by Anders Carlsson · 15 years ago
  79. b78d833 Improve error recovery in C++: when we hit 'implicit int' cases in C++, by Chris Lattner · 15 years ago
  80. 60a9a2a C++ decltype support (N2343) by Anders Carlsson · 15 years ago
  81. 6fd634f Parse the C++0x decltype specifier. by Anders Carlsson · 15 years ago
  82. 9cdda0c Support dependent extended vector types and template instantiation by Douglas Gregor · 15 years ago
  83. 9a917e4 Address comments from Doug - Add a Sema::SemaRef.BuildBlockPointerType and use it. by Anders Carlsson · 15 years ago
  84. 949bf69 Handle member pointer types with dependent class types (e.g., int by Douglas Gregor · 15 years ago
  85. fcff577 Minor cleanup for implicit int warnings. by Eli Friedman · 15 years ago
  86. 3cc9726 Disallow exception specs on typedefs. by Sebastian Redl · 15 years ago
  87. ef65f06 Reject incomplete types in exception specs. by Sebastian Redl · 15 years ago
  88. 6a7330c Disallow exception specifications on multi-level indirections. by Sebastian Redl · 15 years ago
  89. 402abb5 When we parse a tag specifier, keep track of whether that tag by Douglas Gregor · 15 years ago
  90. 465226e Reintroduce the home for exception specs, and make Sema fill it. However, keep the spec out of the canonical type this time. Net effect is currently nothing, because the spec isn't checked anywhere. by Sebastian Redl · 15 years ago
  91. 690dc7f Template instantiation for C99 compound literals by Douglas Gregor · 15 years ago
  92. beaaccd Use v.data() instead of &v[0] when SmallVector v might be empty. by Jay Foad · 15 years ago
  93. 390b4cc Reflow some comments. by Mike Stump · 15 years ago
  94. 8f12f65 reject use of the GNU _Decimal32 extension with a diagnostic, not an abort. by Chris Lattner · 15 years ago
  95. 93dfdb1 Semantic analysis for explicit instantiation of class templates. We by Douglas Gregor · 15 years ago
  96. 7e06390 Encapsulate template arguments lists in a new class, by Douglas Gregor · 15 years ago
  97. 7bc8d96 Allow qualifiers on blocks. Radar 6441502 by Mike Stump · 15 years ago
  98. c7c11b1 rdar://6827200 - [sema] reject statically allocated arrays of interface types by Chris Lattner · 15 years ago
  99. f91f5c8 Add a bit more handling for declarations like "int a[*]". by Eli Friedman · 15 years ago
  100. 5153ee6 Change SemaType's "GetTypeForDeclarator" and "ConvertDeclSpecToType" to by Chris Lattner · 15 years ago