1. a316e7b Extend builtin "attribute" syntax to include a notation for by Douglas Gregor · 16 years ago
  2. 3e41d60 Implicitly declare certain C library functions (malloc, strcpy, memmove, by Douglas Gregor · 16 years ago
  3. 5cdf821 Introduce _Complex conversions into the function overloading by Douglas Gregor · 16 years ago
  4. e21dd6f Fix <rdar://problem/6243503> [sema] @throw; accepted outside catch block. by Steve Naroff · 16 years ago
  5. cc45cb3 Finished semantic analysis of non-type template arguments, to check by Douglas Gregor · 16 years ago
  6. 26a0bdb Rename Sema::hasSameType to QualType::isSameAs by Douglas Gregor · 16 years ago
  7. 6ae5e66 Add type-checking and implicit conversions for template parameters of by Douglas Gregor · 16 years ago
  8. d684b00 Implement parsing, semantic analysis and ASTs for default template by Douglas Gregor · 16 years ago
  9. dd0574e Check template template arguments against their corresponding template by Douglas Gregor · 16 years ago
  10. c15cb38 Rudimentary checking of template arguments against their corresponding by Douglas Gregor · 16 years ago
  11. 5908e9f Eliminate TemplateArg so that we only have a single kind of by Douglas Gregor · 16 years ago
  12. 55f6b14 Start processing template-ids as types when the template-name refers by Douglas Gregor · 16 years ago
  13. 00e68e2 Update new expression to make use of Declarator::getSourceRange(). by Sebastian Redl · 16 years ago
  14. 1a51b4a Make Sema::getTypeName return the opaque pointer of a QualType rather by Douglas Gregor · 16 years ago
  15. 7c8bd60 Move CheckPointerToMemberOperands to SemaExprCXX.cpp by Sebastian Redl · 16 years ago
  16. 8189cde Overhaul of Stmt allocation: by Ted Kremenek · 16 years ago
  17. 2246050 Implement dereferencing of pointers-to-member. by Sebastian Redl · 16 years ago
  18. ddc29e1 Semantic checking for class template declarations and by Douglas Gregor · 16 years ago
  19. 7dda67d Improvements and fixes for name lookup with using directives, from Piotr Rak! by Douglas Gregor · 16 years ago
  20. 98eb8a7 Add support for blocks with explicit return types. by Mike Stump · 16 years ago
  21. d6efafa Improve documentation for Sema::getTypeName. Also, it's return type is by Douglas Gregor · 16 years ago
  22. aaba5e3 Basic representation of C++ class templates, from Andrew Sutton. by Douglas Gregor · 16 years ago
  23. 47b9a1c Some name-lookup-related fixes, from Piotr Rak! by Douglas Gregor · 16 years ago
  24. b696ea3 Diagnose ambiguities in getTypeName. Fixes http://llvm.org/bugs/show_bug.cgi?id=3475 by Douglas Gregor · 16 years ago
  25. f680a0f Bring operator name lookup (as required for C++ operator overloading) by Douglas Gregor · 16 years ago
  26. 1733001 Fix our semantic analysis of by Douglas Gregor · 16 years ago
  27. fa04764 Initial implementation of argument dependent lookup (a.k.a. ADL, by Douglas Gregor · 16 years ago
  28. ebc07d5 Allow taking the address of data members, resulting in a member pointer. by Sebastian Redl · 16 years ago
  29. 2a3009a Semantic analysis, ASTs, and unqualified name lookup support for C++ by Douglas Gregor · 16 years ago
  30. d863517 Add iterators to LookupResult, allowing one to iterate over the by Douglas Gregor · 16 years ago
  31. 87fd703 Check value-initializations that occur when an initializer list by Douglas Gregor · 16 years ago
  32. 734d986 Improve our handling of the second step in a user-defined conversion by Douglas Gregor · 16 years ago
  33. b0f90cc Turn on -flax-vector-conversions by default, issue a warning whenever one is done. Add a -fnolax-vector-conversions option. Fixes PR2862. by Anders Carlsson · 16 years ago
  34. 4c921ae Eliminated LookupCriteria, whose creation was causing a bottleneck for by Douglas Gregor · 16 years ago
  35. a518903 Hack Sema::LookupDeclInScope() to avoid calling Sema::LookupName() when parsing C/ObjC. by Steve Naroff · 16 years ago
  36. 500d329 move library-specific diagnostic headers into library private dirs. Reduce by Chris Lattner · 16 years ago
  37. c34ee5e Move InitListChecker out of Sema.h by Douglas Gregor · 16 years ago
  38. 6fbdc6b Eliminate infinite looping in a wacky case with designated initializers. Simplifies (somewhat) the actually checking of the initializer expression following the designators by Douglas Gregor · 16 years ago
  39. 3e8ffd2 Refactor Sema::LookupDecl() into 2 functions: LookupDeclInScope() and LookupDeclInContext(). by Steve Naroff · 16 years ago
  40. 34e7946 Improvements to code-generation and semantic analysis of designated by Douglas Gregor · 16 years ago
  41. 4c67834 Code generation support for C99 designated initializers. by Douglas Gregor · 16 years ago
  42. b43a50f Name change (isTypeName->getTypeName). by Steve Naroff · 16 years ago
  43. 133147d Remove 'NamespaceNameOnly' argument to Sema::LookupDecl(). It is unused. by Steve Naroff · 16 years ago
  44. 939837f Remove 'enableLazyBuiltinCreation' argument to Sema::LookupDecl(). It is unused. by Steve Naroff · 16 years ago
  45. 20c6b3b Split the single monolithic DiagnosticKinds.def file into one by Chris Lattner · 16 years ago
  46. 5ac8aff Some micro-optimizations for DISABLE_SMART_POINTERS: by Douglas Gregor · 16 years ago
  47. 4433aaf Implement implicit conversions for pointers-to-member. by Sebastian Redl · 16 years ago
  48. 31e21e0 Fix PR3386 by handling GCC's rules for alignof, which are substantially by Chris Lattner · 16 years ago
  49. be109b3 Handle any undeclared parameters in a K&R-style function with a by Douglas Gregor · 16 years ago
  50. 87f55cf Reimplement the handling of the "current object" in designator by Douglas Gregor · 16 years ago
  51. 53ebff3 inline Sema::getLangOptions, rdar://6515190. This speeds up by Chris Lattner · 16 years ago
  52. 05c13a3 Initial implementation of semantic analysis and ASTs for C99 by Douglas Gregor · 16 years ago
  53. 872b9ac Fix Sema::Owned(ExprResult) to not use a ternary operator. Necessary to work around a Visual Studio compiler bug. by Steve Naroff · 16 years ago
  54. 4afa39d Remove ScopedDecl, collapsing all of its functionality into Decl, so by Douglas Gregor · 16 years ago
  55. b8a6aca Convert more expression actions to smart pointers. by Sebastian Redl · 16 years ago
  56. 4ec339f Centralize error reporting of improper uses of incomplete types in the by Douglas Gregor · 16 years ago
  57. 0eb2330 Convert more expression actions to smart pointers. by Sebastian Redl · 16 years ago
  58. cd965b9 Convert a few expression actions to smart pointers. by Sebastian Redl · 16 years ago
  59. 431e90e Convert ObjC statement actions to smart pointers. by Sebastian Redl · 16 years ago
  60. 3037ed0 Convert asm statement action to smart pointers. by Sebastian Redl · 16 years ago
  61. 4cffe2f Convert more statement actions to smart pointers. by Sebastian Redl · 16 years ago
  62. 69d993a PODify LookupResult, for a measly 1% speedup on Cocoa.h. by Douglas Gregor · 16 years ago
  63. 0b7a158 Teach DeclContext how to find the primary declaration for any TagDecl by Douglas Gregor · 16 years ago
  64. f05b152 Convert some more statement actions to smart pointers. by Sebastian Redl · 16 years ago
  65. dce5e2c Use a single function for doing vararg argument promotion. Also, make sure to do the promotion before checking the type - fixes PR3340. by Anders Carlsson · 16 years ago
  66. d5ed8c3 Extract code dealing with typedef declarators into a separate function. by Zhongxing Xu · 16 years ago
  67. cb8f4f1 Extract code dealing with variable declarator into a separate function. by Zhongxing Xu · 16 years ago
  68. 416fcaf Extract code dealing with declarators of function type into a separate function by Zhongxing Xu · 16 years ago
  69. 4dc6b1c Improve diagnostics for ambiguous name lookup results by Douglas Gregor · 16 years ago
  70. 4bb64e7 Deallocate the BasePaths structure that we allocate for LookupResult. by Douglas Gregor · 16 years ago
  71. 7176fff Initial implementation of member name lookup by Douglas Gregor · 16 years ago
  72. eb11cd0 Refactor name lookup. by Douglas Gregor · 16 years ago
  73. 09f41cf Introduce support for C++0x explicit conversion operators (N2437) by Douglas Gregor · 16 years ago
  74. 88b4bf2 Add the proper restrictions on the left-hand argument of a built-in by Douglas Gregor · 16 years ago
  75. d30ef87 Patch by Roman Divacky: by Ted Kremenek · 16 years ago
  76. d1fa644 Patch to supprt case of readonly property being by Fariborz Jahanian · 16 years ago
  77. 1a0d31a Properly set the scope of non-fields declared within a struct, union, by Douglas Gregor · 16 years ago
  78. de30747 Convert some more actions to smart pointers. by Sebastian Redl · 16 years ago
  79. 439c658 Adding support for ObjC methods which have c-style by Fariborz Jahanian · 16 years ago
  80. 72de667 Unify the code for defining tags in C and C++, so that we always by Douglas Gregor · 16 years ago
  81. 0701bbb This is a large/messy diff that unifies the ObjC AST's with DeclContext. by Steve Naroff · 16 years ago
  82. bcbffc4 Initial implementation of anonymous unions (and, as a GNU extension, by Douglas Gregor · 16 years ago
  83. 823c44e - Various comment typo fixes in Sema.h by Chris Lattner · 16 years ago
  84. 1a49af9 Add QualifiedDeclRefExpr, which retains additional source-location by Douglas Gregor · 16 years ago
  85. 64b45f7 PODness and Type Traits by Sebastian Redl · 16 years ago
  86. 074149e Introduce support for "transparent" DeclContexts, which are by Douglas Gregor · 16 years ago
  87. f780abc Parser support for C++ using directives, from Piotr Rak by Douglas Gregor · 16 years ago
  88. 117054a Convert a two more statement actions to smart pointers. by Sebastian Redl · 16 years ago
  89. a4ed0d8 Diagnose declarations that don't declare anything, and fix PR3020. by Sebastian Redl · 16 years ago
  90. c4b4e7b Keep track of template arguments when we parse them. Right now, we don't actually do anything with the template arguments, but they'll be used to create template declarations by Douglas Gregor · 16 years ago
  91. 61366e9 Correct the order in which we cope with end-of-class-definition by Douglas Gregor · 16 years ago
  92. 3fc749d Don't explicitly represent OverloadedFunctionDecls within by Douglas Gregor · 16 years ago
  93. 8351da0 Full AST support and better Sema support for C++ try-catch. by Sebastian Redl · 16 years ago
  94. 4b07b29 Partial AST and Sema support for C++ try-catch. by Sebastian Redl · 16 years ago
  95. 88a3514 Add support for calls to overloaded member functions. Things to note: by Douglas Gregor · 16 years ago
  96. a0fd865 Parser support for C++ try-catch. by Sebastian Redl · 16 years ago
  97. a60528c Convert a few Stmt actions to smart pointers. by Sebastian Redl · 16 years ago
  98. e6d5a4a Implement checks for bool in increment and decrement. by Sebastian Redl · 16 years ago
  99. c788751 Support more implicit conversions for Objective-C types. Addresses <rdar://problem/6458293>. by Douglas Gregor · 16 years ago
  100. 45920e8 Allow downcasts of pointers to Objective-C interfaces, with a by Douglas Gregor · 16 years ago