1. 88465d3 Add an InheritancePath parameter to the ImplicitCastExpr constructor. by Anders Carlsson · 14 years ago
  2. f88b0d6 Transition the last acceptable-result filter kind in LookupResult over to use by John McCall · 14 years ago
  3. 14b9162 Make Parser::ConsumeAndStoreUntil() more consistent with Parser::SkipUntil(). by Argyrios Kyrtzidis · 14 years ago
  4. a3bdded Destroy the inheritance path. by Anders Carlsson · 14 years ago
  5. 409c99e Add an inheritance path member variable to CastExpr. For now it's always null but for derived-to-base and base-to-derived cast expressions it will contain the full base path. This is needed to avoid ambiguities. by Anders Carlsson · 14 years ago
  6. 046861b Turn CXXMethodVector into a generic class template. by Anders Carlsson · 14 years ago
  7. 0d6b164 Recommit my change to how C++ does elaborated type lookups, now with by John McCall · 14 years ago
  8. 0551176 Improve on my previous diagnostics: per Doug's comment. by Fariborz Jahanian · 14 years ago
  9. 2bb5dda More work toward implementing NeXt's -fno-constant-cfstrings - wip. by Fariborz Jahanian · 14 years ago
  10. ca5cec3 Trying to improve on a diagnostics for properties. by Fariborz Jahanian · 14 years ago
  11. 37de281 fix typo by Chris Lattner · 14 years ago
  12. 9bffb07 david conrad points out that {|} in inline assembly on arm are not asm by Chris Lattner · 14 years ago
  13. 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
  14. 20b3c9d Strip cv-qualifiers when building C++ constructor and destructor names. by Douglas Gregor · 14 years ago
  15. 0e313bd Add another 'catch all' access diagnostic. by Anders Carlsson · 14 years ago
  16. d04efc9 C++ doesn't really use "namespaces" for different kinds of names the same by John McCall · 14 years ago
  17. d1aa800 Change the 'declared at' diagnostic to say 'declared here'. by Anders Carlsson · 14 years ago
  18. baf633b Make TemplateDecl and ObjCContainerDecl abstract by Douglas Gregor · 14 years ago
  19. bd4187b Kill off IDNS_ObjCImplementation and IDNS_ObjCCategoryName; they by Douglas Gregor · 14 years ago
  20. 4c9d8d0 Check for -fno-constant-cfstrings consistency in pch. by Fariborz Jahanian · 14 years ago
  21. 33e982b Support for -fno-constant-cfstrings option - wip. by Fariborz Jahanian · 14 years ago
  22. e9ee23e Use the naming class from the overloaded lookup when access-checking an by John McCall · 14 years ago
  23. 3b8c53b Re-land the patch that merges two diagnostics into one now that it passes self-host :) by Anders Carlsson · 14 years ago
  24. d4b2853 Revert "Unify two diagnostics into one.", it breaks with an assertion failure on bootstrap. by Daniel Dunbar · 14 years ago
  25. 792898b Unify two diagnostics into one. by Anders Carlsson · 14 years ago
  26. a41a8c5 Whenever we complain about a failed initialization of a function or by Douglas Gregor · 14 years ago
  27. 6aa14d8 Implement parsing for message sends in Objective-C++. Message sends in by Douglas Gregor · 14 years ago
  28. 1569f95 Migrate the responsibility for turning the receiver name in an by Douglas Gregor · 14 years ago
  29. b99c666 Diagnose access to fields with private constructors. by Anders Carlsson · 14 years ago
  30. 2725ca8 Rework the Parser-Sema interaction for Objective-C message by Douglas Gregor · 14 years ago
  31. 711f34a Keep tack of whether a base in an InitializedEntity is an inherited virtual base or not. Use this in CheckConstructorAccess. by Anders Carlsson · 14 years ago
  32. 9a68a67 Pass the InitializedEntity to Sema::CheckConstructorAccess and use it to report different diagnostics depending on which entity is being initialized. by Anders Carlsson · 14 years ago
  33. d2ec726 Fix typo. by Fariborz Jahanian · 14 years ago
  34. 1705fe9 Add more const to ConstExprIterator. by Benjamin Kramer · 14 years ago
  35. d8383d4 CXXNamedCastExpr is actually an abstract expression. by Zhongxing Xu · 14 years ago
  36. 3fb53bd Reword the note we emit when suppressing template instantiation contexts, per John's advice by Douglas Gregor · 14 years ago
  37. 5fae1d6 Use const_cast instead of a C cast. Safer, plus it suppresses a gcc warning. by John McCall · 14 years ago
  38. 6b85138 Add initial support for C++ delete expr. by Zhongxing Xu · 14 years ago
  39. 04badcf Overhaul the AST representation of Objective-C message send by Douglas Gregor · 14 years ago
  40. 10dc0f8 Remove an unused parameter from isImplicitlyDefined. by Anders Carlsson · 14 years ago
  41. 5c5db4e change FullSourceLoc to have a *const* SourceManager&, eliminating a const_cast. by Chris Lattner · 14 years ago
  42. e127a0d push some source location information down through the compiler, by Chris Lattner · 14 years ago
  43. 38caec4 enhance sourcemgr to detect various UTF BOM's and emit a fatal error by Chris Lattner · 14 years ago
  44. 81d3466 Keep proper source location information for the type in an Objective-C by Douglas Gregor · 14 years ago
  45. 575cf37 Introduce a limit on the depth of the template instantiation backtrace by Douglas Gregor · 14 years ago
  46. b17b1b3 Improve handling of CXXNewExpr. by Zhongxing Xu · 14 years ago
  47. d764d65 add __builtin_[r]index. Perhaps all LIBBUILTIN's should get by Chris Lattner · 14 years ago
  48. 16573fa Keep track of the actual storage specifier written on a variable or by Douglas Gregor · 14 years ago
  49. 6fbe3eb add a PPCallback handler for a skipped #include, patch by Zhanyong Wan! by Chris Lattner · 14 years ago
  50. 5e89655 Remove the argument number from the constant integer diagnostic. by Eric Christopher · 14 years ago
  51. 63326a5 Some renaming of methods, fixes typo (related to PR6769). by Fariborz Jahanian · 14 years ago
  52. cb421fa Fix -Wcast-qual warnings. by Dan Gohman · 14 years ago
  53. cb7464a Move all C++ expression evaluation logic into its own file. by Zhongxing Xu · 14 years ago
  54. 856c6bc Analyzer: add support for CXXNewExpr. by Zhongxing Xu · 14 years ago
  55. 65ad5a4 Local static variables must be available module-wise by Fariborz Jahanian · 14 years ago
  56. 3fbaf3e Improve our handling of user-defined conversions as part of overload by Douglas Gregor · 14 years ago
  57. eb5d7b7 Add support for '-fgnu-keywords' and '-fasm' to Clang's driver. They are not by Chandler Carruth · 14 years ago
  58. 046c294 Vtable -> VTable renames across the board. by Anders Carlsson · 14 years ago
  59. f6cde77 Add printName to DeclarationName which prints the human-readable name on a by Benjamin Kramer · 14 years ago
  60. 900fc63 Add raw_ostream operators to NamedDecl for convenience. Switch over all users of getNameAsString on a stream. by Benjamin Kramer · 14 years ago
  61. 691ebc3 Consolidate most of the integer constant expression builtin requirement by Eric Christopher · 14 years ago
  62. 2b334bb make our existing "switch on bool" warning work for C. Since by Chris Lattner · 14 years ago
  63. 0ade808 Add a write(raw_ostream&) method to RewriteBuffer. This uses an inefficient by Nick Lewycky · 14 years ago
  64. d0fe3e9 allow mapping fatal errors to errors. by Chris Lattner · 14 years ago
  65. 72468ec Start working on handling wide bitfields in C++ by Anders Carlsson · 14 years ago
  66. ccfa963 Expand the argument diagnostics for too many arguments and give by Eric Christopher · 14 years ago
  67. d77b9a2 Expand argument diagnostic for too few arguments to give the number by Eric Christopher · 14 years ago
  68. c83c687 Feed proper source-location information into Sema::LookupSingleResult, by Douglas Gregor · 14 years ago
  69. c75d6cc Improve the bit-field too wide error message. by Anders Carlsson · 14 years ago
  70. bf422f9 Diagnose attempts to throw an abstract class type. by Douglas Gregor · 14 years ago
  71. fb937b8 clang -cc1: Add a -fno-bitfield-type-align option, for my own testing purposes. by Daniel Dunbar · 14 years ago
  72. b6830d6 Tweak spelling (Bitfield -> BitField) by Daniel Dunbar · 14 years ago
  73. d4a97a1 Teach -fixit to modify all of its inputs instead of just the main file, unless by Nick Lewycky · 14 years ago
  74. b6a1693 Add TargetInfo::useBitfieldTypeAlignment(). by Daniel Dunbar · 14 years ago
  75. 3f87fb0 Driver/Frontend: Add support for -mllvm, which forwards options to the LLVM option parser. by Daniel Dunbar · 14 years ago
  76. e57aa9e Rewrite handling of 64-bit palignr intrinsics to be vector shuffles. by Eric Christopher · 14 years ago
  77. b13c170 Teach ASTVector::append() about the case where 'NumInputs' is 0. This hopefully fixes by Ted Kremenek · 14 years ago
  78. 325e593 Warn about non-aggregate classes with no user-declared constructors by Douglas Gregor · 14 years ago
  79. 1a8cf73 Always diagnose and complain about problems in by Douglas Gregor · 14 years ago
  80. 1864f2e Once we've emitted a fatal diagnostic, keep counting errors but with a by Douglas Gregor · 14 years ago
  81. 6cd1e7c Make CXLanguage_Invalid the first enum value (with '0' as its value) in CXLanguageKind. by Ted Kremenek · 14 years ago
  82. 55b3884 When diagnosing suspicious precedence or assignments, move the fix-it by Douglas Gregor · 14 years ago
  83. 868e78d Move GRStmtNodeBuilder::MakeNode() out of line. No functionality change. by Zhongxing Xu · 14 years ago
  84. 477323d Add support for CXXBoolLiteralExpr. by Zhongxing Xu · 14 years ago
  85. 2700831 add builtin for __builtin_vsprintf, patch by Paul Davey by Chris Lattner · 14 years ago
  86. 8877321 make the token paste avoidance logic turn "..." into ".. ." instead of ". . ." by Chris Lattner · 14 years ago
  87. dd17394 implement altivec.h and a bunch of support code, patch by Anton Yartsev! by Chris Lattner · 14 years ago
  88. 47bd543 Implement typo correction for Objective-C message sends when the by Douglas Gregor · 14 years ago
  89. 1dbca6e Introduce a parsing action to distinguish between class, instance, and by Douglas Gregor · 14 years ago
  90. 709210f Use ASTVector instead of std::vector for the Exprs in InitListExpr. Performance by Ted Kremenek · 14 years ago
  91. 9c9bd84 Introduce ASTVector, which is a std::vector-like class that allocates all memory by Ted Kremenek · 14 years ago
  92. 8bd5a69 Add cursor kind for C++ methods. by Ted Kremenek · 14 years ago
  93. c09289d Add a cc1 option to specify the max number of nodes the analyzer can explore. by Zhongxing Xu · 14 years ago
  94. bbea716 add frontend support for -fdata-sections and -ffunction-sections, by Chris Lattner · 14 years ago
  95. a3f8137 Diagnose declarations of conversion functions with declarators other than '()'. by John McCall · 14 years ago
  96. 04e4427 fix PR6814 - Only print [-pedantic] on a diagnostic if -pedantic by Chris Lattner · 14 years ago
  97. 45e1dae Add 'clang_getCursorLanguage' to return the "language" of the AST element (e.g., distinguish between C and Objective-C language features). Currently this only returns results for declarations. by Ted Kremenek · 14 years ago
  98. c6f530d Update doxygen comments about lifetime requirements of CXUnsaveFile data arguments. by Ted Kremenek · 14 years ago
  99. 454006d fix rdar://7852959 - Use of super within a block is actually ok. by Chris Lattner · 14 years ago
  100. 57265e3 Fix a crash-on-invalid involving name lookup of tag names, where we by Douglas Gregor · 14 years ago