1. 53b9441 Split ObjCInterfaceDecl::ReferencedProtocols into two lists: ReferencedProtocols and AllReferencedProtocols. ReferencedProtocols by Ted Kremenek · 14 years ago
  2. 9996a7f Fix the memory leak of FloatingLiteral/IntegerLiteral. by Argyrios Kyrtzidis · 14 years ago
  3. 5baba9d More incremental progress towards not including Expr.h in Sema.h. by John McCall · 14 years ago
  4. ba6f816 Remove dead code, caught by unused function warnings. by Argyrios Kyrtzidis · 14 years ago
  5. 2577743 Added locations and type source info for DeclarationName. by Abramo Bagnara · 14 years ago
  6. deacbdc Speculatively revert r110610 " Make ObjCInterfaceDecl redeclarable, by Douglas Gregor · 14 years ago
  7. 74c730a - Make ObjCInterfaceDecl redeclarable, and create separate decl nodes for forward declarations and the definition. by Sebastian Redl · 14 years ago
  8. f871d0c Store inheritance paths after CastExprs instead of inside them. by John McCall · 14 years ago
  9. 5606220 Add source location information to C++ base specifiers. by Nick Lewycky · 14 years ago
  10. 3fe1041 atch for implementation of objective-c's -Wselector by Fariborz Jahanian · 14 years ago
  11. 906082e Update ImplicitCastExpr to be able to represent an XValue. by Sebastian Redl · 14 years ago
  12. ac0021b Added PCH/ASTImporter code for ObjCIvarDecl's field. by Fariborz Jahanian · 14 years ago
  13. 788b0fd improve altivec vector bool/pixel support, patch by Anton Yartsev by Chris Lattner · 14 years ago
  14. 80aa1cd Patch to provide separate ASTs for multiple ObjC class extension by Fariborz Jahanian · 14 years ago
  15. 3350095 Split DependentNameType into two types. DependentNameType represents the by John McCall · 14 years ago
  16. 83a230c Remember type source information for Objective C property declarations. by John McCall · 14 years ago
  17. 5250f27 Hack in some really terrible C++ record PCH support that I need right now. by John McCall · 14 years ago
  18. bd054db Renamed misleading getSourceRange -> getLocalSourceRange and getFullSourceRange -> getSourceRange for TypeLoc. by Abramo Bagnara · 14 years ago
  19. c12c5bb Substantially alter the design of the Objective C type AST by introducing by John McCall · 14 years ago
  20. 465d41b Merged Elaborated and QualifiedName types. by Abramo Bagnara · 14 years ago
  21. 1b5a618 Remember the number of positive and negative bits used by the enumerators of by John McCall · 14 years ago
  22. 31f17ec Make the InjectedClassNameType the canonical type of the current instantiation by John McCall · 14 years ago
  23. 41b2dcd Add BasePath arguments to all cast expr constructors. by Anders Carlsson · 14 years ago
  24. f1b48b7 CastExpr should not hold a pointer to the base path. More cleanup. by Anders Carlsson · 14 years ago
  25. 88465d3 Add an InheritancePath parameter to the ImplicitCastExpr constructor. by Anders Carlsson · 14 years ago
  26. 0d6b164 Recommit my change to how C++ does elaborated type lookups, now with by John McCall · 14 years ago
  27. 00b40d3 Revert "C++ doesn't really use "namespaces" for different kinds of names the same", which seems to break most C++ nightly test apps. by Daniel Dunbar · 14 years ago
  28. d04efc9 C++ doesn't really use "namespaces" for different kinds of names the same by John McCall · 14 years ago
  29. e127a0d push some source location information down through the compiler, by Chris Lattner · 14 years ago
  30. 16573fa Keep track of the actual storage specifier written on a variable or by Douglas Gregor · 14 years ago
  31. 4ecb25f Fixes a regression caused by implementing cstyle methods for objc. by Fariborz Jahanian · 14 years ago
  32. a0a270c Match MemoryBuffer API changes. by Chris Lattner · 14 years ago
  33. a065492 Sema/Obj-C: Narrow type of ObjCIvarDecl::Create, and check additional invariants on the provided DeclContext. by Daniel Dunbar · 14 years ago
  34. 4714c12 Rename TypenameType to DependentNameType in anticipation of some by Douglas Gregor · 14 years ago
  35. 264ba48 the big refactoring bits of PR3782. by Rafael Espindola · 14 years ago
  36. 36c35ba Use SourceManager's Diagnostic object for all file-reading errors, by Douglas Gregor · 15 years ago
  37. b621766 Remember declaration scope qualifiers in the AST. Imposes no memory overhead by John McCall · 15 years ago
  38. bf73b35 Remember whether a ParmVarDecl was spelled with a default argument or by John McCall · 15 years ago
  39. 3cb0ebd Create a new InjectedClassNameType to represent bare-word references to the by John McCall · 15 years ago
  40. 4bc1cb6 Keep track of type source information in the return type of an by Douglas Gregor · 15 years ago
  41. 325bf17 Set access specifiers on imported declarations. by Douglas Gregor · 15 years ago
  42. c144f35 Implement AST import for C++ member functions, including constructors, destructors, and conversions. Unfortunately, this cannot be tested yet, since we don't have C++ PCH support. by Douglas Gregor · 15 years ago
  43. 788c62d Implement AST importing for C++ namespaces. by Douglas Gregor · 15 years ago
  44. 083a821 Collect the code that imports all of the members of a declaration context into a single function, ImportDeclContext. Use it rather than explicit loops. No functionality change. by Douglas Gregor · 15 years ago
  45. 0e12b44 Add a missing break. Cocoa.h can now be merged twice into the same AST context by Douglas Gregor · 15 years ago
  46. 008847a AST import for CStyleCastExpr. With this, we can import Cocoa.h into an empty context by Douglas Gregor · 15 years ago
  47. bd249a5 AST import for sizeof and alignof expressions by Douglas Gregor · 15 years ago
  48. 4408063 AST import for DeclRefExprs by Douglas Gregor · 15 years ago
  49. f638f95 AST import of parenthesized expressions, unary operators, binary by Douglas Gregor · 15 years ago
  50. bb2d176 Try to fix the auroraux buildbot. I suspect it has a "#define SEC" somewhere. by Benjamin Kramer · 15 years ago
  51. b2e400a AST import for character literals by Douglas Gregor · 15 years ago
  52. 2b78502 AST import for forward declarations of Objective-C protocols by Douglas Gregor · 15 years ago
  53. a2bc15b Implement import of forward declarations of Objective-C classes by Douglas Gregor · 15 years ago
  54. b4677b6 AST import of Objective-C categories. by Douglas Gregor · 15 years ago
  55. 2cd0093 Implement AST importing of ImplicitParamDecls, despite the sad fact by Douglas Gregor · 15 years ago
  56. e326162 Implement AST merging for Objective-C properties. by Douglas Gregor · 15 years ago
  57. 2e2a400 AST import for Objective-C protocols by Douglas Gregor · 15 years ago
  58. c3f2d2b Implement AST importing and checking for Objective-C method declarations. by Douglas Gregor · 15 years ago
  59. 2e55e3a Implement AST importing of Objective-C instance variables. by Douglas Gregor · 15 years ago
  60. a12d294 Skeleton for importing Objective-C classes by Douglas Gregor · 15 years ago
  61. ea35d11 Cope with anonymous tags defined within declarators by structurally by Douglas Gregor · 15 years ago
  62. 73dc30b Reimplement the structural-equality checks used to determine whether by Douglas Gregor · 15 years ago
  63. af66758 Add newline. by Daniel Dunbar · 15 years ago
  64. 5ce5dab Funnel changes to the ImportedDecls list in the ASTImporter through a by Douglas Gregor · 15 years ago
  65. 36ead2e Implement AST importing and merging for enumeration types and by Douglas Gregor · 15 years ago
  66. d014542 Simplify incomplete-array merging code in the AST importer, thanks to by Douglas Gregor · 15 years ago
  67. e72b5dc Handle AST merges of incomplete class types. by Douglas Gregor · 15 years ago
  68. 4800d95 When AST merging for record declarations fails, warn about the by Douglas Gregor · 15 years ago
  69. 2d5b703 Remove another redundant ASTContext parameter by Douglas Gregor · 15 years ago
  70. 838db38 Eliminate a bunch of unnecessary ASTContexts from members functions of by Douglas Gregor · 15 years ago
  71. 952b017 Eliminate the ASTContext parameter from RecordDecl::getDefinition() by Douglas Gregor · 15 years ago
  72. 96a01b4 Implement basic AST merging for classes, structs, and unions in C. by Douglas Gregor · 15 years ago
  73. 9e5d996 Move TypedefDecl importer to match the ordering in DeclNodes. No functionality change. by Douglas Gregor · 15 years ago
  74. a404ea6 Implement basic support for merging function declarations across by Douglas Gregor · 15 years ago
  75. 82fc4bf Implement AST importing and merging for typedefs. As part of this, provide a lame implementation for importing TypeSourceInfos. by Douglas Gregor · 15 years ago
  76. 0f962a8 Teach AST merging that variables with incomplete array types can be by Douglas Gregor · 15 years ago
  77. 8852373 Implement basic support for importing source locations from one AST by Douglas Gregor · 15 years ago
  78. 89cc9d6 Complain about types and declarations that we don't know how to import. by Douglas Gregor · 15 years ago
  79. 9bed879 Introduce a testbed for merging multiple ASTs into a single AST by Douglas Gregor · 15 years ago
  80. 089459a Implement basic importing and merging of variable declarations within by Douglas Gregor · 15 years ago
  81. 169fba5 Cache imported types by Douglas Gregor · 15 years ago
  82. 1b2949d Initial skeleton of an AST "importer", which will take AST elements from by Douglas Gregor · 15 years ago