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