1. 88465d3 Add an InheritancePath parameter to the ImplicitCastExpr constructor. by Anders Carlsson · 14 years ago
  2. 0d6b164 Recommit my change to how C++ does elaborated type lookups, now with by John McCall · 14 years ago
  3. 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
  4. d04efc9 C++ doesn't really use "namespaces" for different kinds of names the same by John McCall · 14 years ago
  5. e127a0d push some source location information down through the compiler, by Chris Lattner · 14 years ago
  6. 16573fa Keep track of the actual storage specifier written on a variable or by Douglas Gregor · 14 years ago
  7. 4ecb25f Fixes a regression caused by implementing cstyle methods for objc. by Fariborz Jahanian · 14 years ago
  8. a0a270c Match MemoryBuffer API changes. by Chris Lattner · 14 years ago
  9. a065492 Sema/Obj-C: Narrow type of ObjCIvarDecl::Create, and check additional invariants on the provided DeclContext. by Daniel Dunbar · 14 years ago
  10. 4714c12 Rename TypenameType to DependentNameType in anticipation of some by Douglas Gregor · 14 years ago
  11. 264ba48 the big refactoring bits of PR3782. by Rafael Espindola · 14 years ago
  12. 36c35ba Use SourceManager's Diagnostic object for all file-reading errors, by Douglas Gregor · 14 years ago
  13. b621766 Remember declaration scope qualifiers in the AST. Imposes no memory overhead by John McCall · 14 years ago
  14. bf73b35 Remember whether a ParmVarDecl was spelled with a default argument or by John McCall · 14 years ago
  15. 3cb0ebd Create a new InjectedClassNameType to represent bare-word references to the by John McCall · 14 years ago
  16. 4bc1cb6 Keep track of type source information in the return type of an by Douglas Gregor · 14 years ago
  17. 325bf17 Set access specifiers on imported declarations. by Douglas Gregor · 15 years ago
  18. 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
  19. 788c62d Implement AST importing for C++ namespaces. by Douglas Gregor · 15 years ago
  20. 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
  21. 0e12b44 Add a missing break. Cocoa.h can now be merged twice into the same AST context by Douglas Gregor · 15 years ago
  22. 008847a AST import for CStyleCastExpr. With this, we can import Cocoa.h into an empty context by Douglas Gregor · 15 years ago
  23. bd249a5 AST import for sizeof and alignof expressions by Douglas Gregor · 15 years ago
  24. 4408063 AST import for DeclRefExprs by Douglas Gregor · 15 years ago
  25. f638f95 AST import of parenthesized expressions, unary operators, binary by Douglas Gregor · 15 years ago
  26. bb2d176 Try to fix the auroraux buildbot. I suspect it has a "#define SEC" somewhere. by Benjamin Kramer · 15 years ago
  27. b2e400a AST import for character literals by Douglas Gregor · 15 years ago
  28. 2b78502 AST import for forward declarations of Objective-C protocols by Douglas Gregor · 15 years ago
  29. a2bc15b Implement import of forward declarations of Objective-C classes by Douglas Gregor · 15 years ago
  30. b4677b6 AST import of Objective-C categories. by Douglas Gregor · 15 years ago
  31. 2cd0093 Implement AST importing of ImplicitParamDecls, despite the sad fact by Douglas Gregor · 15 years ago
  32. e326162 Implement AST merging for Objective-C properties. by Douglas Gregor · 15 years ago
  33. 2e2a400 AST import for Objective-C protocols by Douglas Gregor · 15 years ago
  34. c3f2d2b Implement AST importing and checking for Objective-C method declarations. by Douglas Gregor · 15 years ago
  35. 2e55e3a Implement AST importing of Objective-C instance variables. by Douglas Gregor · 15 years ago
  36. a12d294 Skeleton for importing Objective-C classes by Douglas Gregor · 15 years ago
  37. ea35d11 Cope with anonymous tags defined within declarators by structurally by Douglas Gregor · 15 years ago
  38. 73dc30b Reimplement the structural-equality checks used to determine whether by Douglas Gregor · 15 years ago
  39. af66758 Add newline. by Daniel Dunbar · 15 years ago
  40. 5ce5dab Funnel changes to the ImportedDecls list in the ASTImporter through a by Douglas Gregor · 15 years ago
  41. 36ead2e Implement AST importing and merging for enumeration types and by Douglas Gregor · 15 years ago
  42. d014542 Simplify incomplete-array merging code in the AST importer, thanks to by Douglas Gregor · 15 years ago
  43. e72b5dc Handle AST merges of incomplete class types. by Douglas Gregor · 15 years ago
  44. 4800d95 When AST merging for record declarations fails, warn about the by Douglas Gregor · 15 years ago
  45. 2d5b703 Remove another redundant ASTContext parameter by Douglas Gregor · 15 years ago
  46. 838db38 Eliminate a bunch of unnecessary ASTContexts from members functions of by Douglas Gregor · 15 years ago
  47. 952b017 Eliminate the ASTContext parameter from RecordDecl::getDefinition() by Douglas Gregor · 15 years ago
  48. 96a01b4 Implement basic AST merging for classes, structs, and unions in C. by Douglas Gregor · 15 years ago
  49. 9e5d996 Move TypedefDecl importer to match the ordering in DeclNodes. No functionality change. by Douglas Gregor · 15 years ago
  50. a404ea6 Implement basic support for merging function declarations across by Douglas Gregor · 15 years ago
  51. 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
  52. 0f962a8 Teach AST merging that variables with incomplete array types can be by Douglas Gregor · 15 years ago
  53. 8852373 Implement basic support for importing source locations from one AST by Douglas Gregor · 15 years ago
  54. 89cc9d6 Complain about types and declarations that we don't know how to import. by Douglas Gregor · 15 years ago
  55. 9bed879 Introduce a testbed for merging multiple ASTs into a single AST by Douglas Gregor · 15 years ago
  56. 089459a Implement basic importing and merging of variable declarations within by Douglas Gregor · 15 years ago
  57. 169fba5 Cache imported types by Douglas Gregor · 15 years ago
  58. 1b2949d Initial skeleton of an AST "importer", which will take AST elements from by Douglas Gregor · 15 years ago