1. 9a55591 Convert DeclNodes to use TableGen. by Sean Hunt · 14 years ago
  2. 2b7baf0 Roll back r104941. by John McCall · 14 years ago
  3. 1d0a585 Add a new attribute on records, __attribute__((adl_invisible)), and define by John McCall · 14 years ago
  4. 5077c38 Implement semantic analysis and an AST representation for the named by Douglas Gregor · 14 years ago
  5. 030854b pch'ify default argument definitions and uses. by Chris Lattner · 14 years ago
  6. 6ad9ac0 add PCH support for a bunch of C++ Decls, patch by Andrew Sutton! by Chris Lattner · 14 years ago
  7. 1b5a618 Remember the number of positive and negative bits used by the enumerators of by John McCall · 14 years ago
  8. 17cb326 This patch deals with Sema Part of Setter/Getter synthesis by Fariborz Jahanian · 14 years ago
  9. 324b54d Diagnose unused exception parameters under a different warning group by Douglas Gregor · 14 years ago
  10. e4498c6 More of Sema to implement initialization of ivar of c++ object types. by Fariborz Jahanian · 14 years ago
  11. 16573fa Keep track of the actual storage specifier written on a variable or by Douglas Gregor · 14 years ago
  12. 7732cc9 Implement method type encoding in the presense by Fariborz Jahanian · 14 years ago
  13. 83e7a78 rename llvm::llvm_report_error -> llvm::report_fatal_error by Chris Lattner · 14 years ago
  14. b621766 Remember declaration scope qualifiers in the AST. Imposes no memory overhead by John McCall · 14 years ago
  15. bf73b35 Remember whether a ParmVarDecl was spelled with a default argument or by John McCall · 14 years ago
  16. 4bc1cb6 Keep track of type source information in the return type of an by Douglas Gregor · 15 years ago
  17. 0cef483 Implement PCH support for C++ namespaces. by Douglas Gregor · 15 years ago
  18. b37b648 Improve representation of tag declarations first declared or defined by Douglas Gregor · 15 years ago
  19. 591bd3c Keep track of whether a tag was defined in a declarator vs. being by Douglas Gregor · 15 years ago
  20. d050240 Patch to implement rewriting of properties. Fixes radar 7562952. by Fariborz Jahanian · 15 years ago
  21. 3db211b Improve location information for Objective-C category declarations. We by Douglas Gregor · 15 years ago
  22. 18df52b Keep track of the source locations for each protocol reference in by Douglas Gregor · 15 years ago
  23. 782f2f5 Change ObjCContainerDecl to contain the entire range for the '@end' by Ted Kremenek · 15 years ago
  24. 842aef8 First pass at implementing C++ enum semantics: calculate (and store) an by John McCall · 15 years ago
  25. a93c934 DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated variables, by John McCall · 15 years ago
  26. 3367198 Use llvm_report_error instead of fprintf + assert + exit. by Daniel Dunbar · 15 years ago
  27. 321c22f Add SourceLocations to ObjCClassDecl for the class identifiers referenced by @class. by Ted Kremenek · 15 years ago
  28. 0130f3c Rename FunctionDecl::isInline/setInline to by Douglas Gregor · 15 years ago
  29. ba6a9bd Preserve type source information in TypedefDecls. Preserve it across by John McCall · 15 years ago
  30. 58e4677 Remove OriginalTypeParmDecl; the original type is the one specified by John McCall · 15 years ago
  31. 61d60ee Merge the "types" and "declarations" blocks in the precompiled header by Douglas Gregor · 15 years ago
  32. a1ee0c5 Factor out routines to encode/decode DeclaratorInfos and move them into the by John McCall · 15 years ago
  33. 7d1d49d Keep track of whether declararions were loaded from a precompiled by Douglas Gregor · 15 years ago
  34. 34a0447 Better living through metaprogramming. Create a base class which abstracts by John McCall · 15 years ago
  35. 0c41180 Pull TypeLocVisitor into its own header file. by Argyrios Kyrtzidis · 15 years ago
  36. eb66759 Introduce ObjCInterfaceLoc which provides type source information for ObjC interfaces. by Argyrios Kyrtzidis · 15 years ago
  37. f352bdd Introduce ObjCProtocolListLoc for keeping source location information for protocol references. by Argyrios Kyrtzidis · 15 years ago
  38. 7f8b57a Update PCH serialization of FunctionDecl flags. by Daniel Dunbar · 15 years ago
  39. e24d38f PCH: When writing PCH files, tweak the predicate function deciding whether to mark a decl as "external" to be closer to reality. by Daniel Dunbar · 15 years ago
  40. 1fc09a9 Rework the way we determine whether an externally visible symbol is by Douglas Gregor · 15 years ago
  41. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  42. f42e4a6 Fix build of clang with gcc-4.4: #include <cstdio> was missing. by Torok Edwin · 15 years ago
  43. a5d8200 Remove TypeSpecStartLocation from VarDecl/FunctionDecl/FieldDecl, and use DeclaratorInfo to get this information. by Argyrios Kyrtzidis · 15 years ago
  44. d4a7e54 Store/load type source info from/to PCH files. by Argyrios Kyrtzidis · 15 years ago
  45. 8e9e9ef Make tag declarations redeclarable. This change has three purposes: by Douglas Gregor · 15 years ago
  46. aecae62 Make ObjCImplDecl inherit from ObjCContainerDecl. by Argyrios Kyrtzidis · 15 years ago
  47. 741dd9a Add the location of the tag keyword into TagDecl. From Enea by Douglas Gregor · 15 years ago
  48. 75f1af0 Reuse VarDecl::Init to store the default argument of a ParmVarDecl, by Douglas Gregor · 15 years ago
  49. ea218b8 Add a "TypeSpecStartLoc" to FieldDecl. Patch contributed by Enea Zaffanella. by Steve Naroff · 15 years ago
  50. ad93a74 Read/write TagDecl's RBraceLoc from/to PCH files. by Argyrios Kyrtzidis · 15 years ago
  51. 643b7df Patch adds test to my previous patch for assigning to by Fariborz Jahanian · 15 years ago
  52. 6fb0aee Remove the ASTContext parameter from the getBody() methods of Decl and subclasses. by Argyrios Kyrtzidis · 15 years ago
  53. 40b598e Remove the ASTContext parameter from the attribute-related methods of Decl. by Argyrios Kyrtzidis · 15 years ago
  54. 8cff90e Serialize FunctionDecl's EndRangeLoc out to the PCH file. by Argyrios Kyrtzidis · 15 years ago
  55. e0762c9 Keep track of when declarations are "used" according to C and by Douglas Gregor · 15 years ago
  56. 68584ed Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>. by Douglas Gregor · 15 years ago
  57. 44dfc98 Unify coding style. by Zhongxing Xu · 15 years ago
  58. 0e10813 Use a reference to modify the DeclIDs map. by Zhongxing Xu · 15 years ago
  59. 8dbc3c6 Enumeration declarations that were instantiated from an enumeration by Douglas Gregor · 15 years ago
  60. 77b7f1d Check that the function being overridden is virtual. by Anders Carlsson · 15 years ago
  61. a75e853 Improvements to the FunctionDecl getters/setters. by Anders Carlsson · 15 years ago
  62. 1eee0e7 Link FunctionDecls instantiated from the member functions of a class by Douglas Gregor · 15 years ago
  63. ea5ce47 add an abbreviation for common PARM_VAR_DECL. All but 9 of the by Chris Lattner · 15 years ago
  64. 12b1c76 split decl writing out to its own PCHWriterDecl.cpp file. by Chris Lattner · 15 years ago