1. ce0682f Make ChainedIncludesSource an ExternalSemaSource, otherwise initialization of the ASTReader is incomplete, leading to errors like not realizing std::type_info is already defined. by Sebastian Redl · 13 years ago
  2. ad1a4c6 Change Clang's __VERSION__ to include the same basic info as in clang -v. by Daniel Dunbar · 13 years ago
  3. 2d33e42 Use intrinsics for Neon vmull operations. Radar 9208957. by Bob Wilson · 13 years ago
  4. b78c33f Put "#pragma message ..." into its own warning (human friendly) category. by Ted Kremenek · 13 years ago
  5. a6c5308 Silence warnings of unkwown -Wlarger-than and -Wframe-larger-than. Fixes rdar://6970318. by Argyrios Kyrtzidis · 13 years ago
  6. b277159 Begin reworking static analyzer support for C++ method calls. The current logic was divorced by Ted Kremenek · 13 years ago
  7. 68af13f Fix IRGen issues related to using property-dot syntax by Fariborz Jahanian · 13 years ago
  8. 1293cda [analyzer] Checker Packages can now belong to a group. This requires llvm commit r128474. by Argyrios Kyrtzidis · 13 years ago
  9. 9693232 Integrated-As: Support -Wa,-L when using the integrated assembler. by Daniel Dunbar · 13 years ago
  10. 402adc3 Frontend/cc1as: Add support for -L. by Daniel Dunbar · 13 years ago
  11. 7f3ad23 Remove stray null from the middle of a comment. (Found because my editor by Eli Friedman · 13 years ago
  12. 4147d30 Improve recovery (error + fix-it) when parsing type dependent template name without the "template" keyword. by Francois Pichet · 13 years ago
  13. a7689ef Diagnose uninitialized uses of a variable within its own initializer. by Chandler Carruth · 13 years ago
  14. d06fea8 supported: AltiVec vector initialization with a single literal according to PIM section 2.5.1 - after initialization all elements have the value specified by the literal by Anton Yartsev · 13 years ago
  15. abaca7a Add an option to suppress include stack printing on note diagnostics. by Chandler Carruth · 13 years ago
  16. 5adb5a8 Add -f[no-]strict-overflow to the Clang driver. Use it to set the by Chandler Carruth · 13 years ago
  17. 077f490 More coherent diagnostic attempting to assign to a member of a const object returned by Fariborz Jahanian · 13 years ago
  18. 3d9ce90 Make diagnostic clearer. by Fariborz Jahanian · 13 years ago
  19. 4421d2b On Mac OS X, the presence of an 'availability' attribute for that by Douglas Gregor · 13 years ago
  20. b53e417 Extend the new 'availability' attribute with support for an by Douglas Gregor · 13 years ago
  21. 2234873 Allow GC qualifiers to be added/removed by conversions from/to void* by John McCall · 13 years ago
  22. 3812999 TraverseNestedNameSpecifier -> TraverseNestedNameSpecifierLoc in a few by Craig Silverstein · 13 years ago
  23. 8a29ba0 Remove the last of ClassVirtSpecifiers. by Anders Carlsson · 13 years ago
  24. 2c3ee54 Get rid of handling of the 'explicit' keyword from class-head. We still parse it though, although that will change shortly. by Anders Carlsson · 13 years ago
  25. 844c25d Remove warnings about using override control keywords in inline function definitions; they will be allowed in the next C++0x draft. by Anders Carlsson · 13 years ago
  26. b1f3968 Remove 'new' from virt-specifier since it's going to be removed in the next C++0x draft by Anders Carlsson · 13 years ago
  27. 909a70d Apply the nonnull attribute to constructor expressions too. by Nick Lewycky · 13 years ago
  28. 0b7e678 Insomniac refactoring: change how the parser allocates attributes so that by John McCall · 13 years ago
  29. 2b32dad Add a new warning for exit-time destructors. by Anders Carlsson · 13 years ago
  30. c05a94b Call out ObjC parameter types as a different kind of declarator context by John McCall · 13 years ago
  31. d97f558 Support for Transparent unions used as overloadable by Fariborz Jahanian · 13 years ago
  32. 2923380 Teach DelayedDiagnostic to copy its string, rather than hope that the by Douglas Gregor · 13 years ago
  33. 7f9fc3f switch a few Driver APIs to use llvm::ArrayRef, cleaning up code. by Chris Lattner · 13 years ago
  34. 9d5a165 Fix crash in clang_getInstantiationLoc() when SourceManager::getInstantiationLoc() can return a SourceLocatin with an invalid by Ted Kremenek · 13 years ago
  35. 0a0d2b1 Implement a new 'availability' attribute, that allows one to specify by Douglas Gregor · 13 years ago
  36. ac4df24 Warn about unused declaration-specifiers on tag declarations. by John McCall · 13 years ago
  37. 3c66d30 Frontend: Add a more explicit -backend-option flag for passing backend command by Daniel Dunbar · 13 years ago
  38. e5a3ce6 Don't clear OverloadCandidateSets on destruction, it has no effect anymore. by Benjamin Kramer · 13 years ago
  39. 614f96a Migrate 'PrettySTackTraceParserEntry' object out of Parser, and have it constructed within ParseAST. This avoids double crashes by Ted Kremenek · 13 years ago
  40. da60885 Frontend: Change CC_PRINT_HEADERS to not print header depth markers, these don't by Daniel Dunbar · 13 years ago
  41. 4f32786 Improve crash recovery cleanup to recovery CompilerInstances during crash recovery. This was a huge resource "root" during crashes. by Ted Kremenek · 13 years ago
  42. 05e5930 Memorize presence/absence of -nostdlib in Driver. by Joerg Sonnenberger · 13 years ago
  43. 8ab2bdc Remember sysroot in Driver. Pass it down to ld for NetBSD, FreeBSD by Joerg Sonnenberger · 13 years ago
  44. eedd467 Downgrade err_mismatched_exception_spec to a ExtWarning in Microsoft mode. MSVC doesn't do any validation on exception specifications. by Francois Pichet · 13 years ago
  45. ba814e7 Initialize FakeAddressSpaceMap flag. by Benjamin Kramer · 13 years ago
  46. e5da3e6 makes vec_step operator work when AltiVec support is enabled by Anton Yartsev · 13 years ago
  47. f899af6 Add pre- and post-increment/decrement operators to CharUnits. by Ken Dyck · 13 years ago
  48. af13d5b Rename class 'CFGReachabilityAnalysis' to 'CFGReverseBlockReachabilityAnalysis'. by Ted Kremenek · 13 years ago
  49. d2427dd Add libclang hook 'clang_toggleCrashRecovery()', which provides a mechanism for a client to enable/disable CrashRecovery within libclang function calls. by Ted Kremenek · 13 years ago
  50. 207f4d8 Add support for language-specific address spaces. On top of that, by Peter Collingbourne · 13 years ago
  51. 2ed4228 Lexer: Add extremely limited support for -traditional-cpp, ignoring BCPL by Daniel Dunbar · 13 years ago
  52. ac0659a Driver: Give SelectTool access to the action inputs. by Daniel Dunbar · 13 years ago
  53. 7dbafb3 Add FileManager::getNoncachedStatValue, which will resolve relative paths against the working directory specified in the file system options. by Anders Carlsson · 13 years ago
  54. d6a49bb Add an opt-in -Wheader-hygiene, which current diagnoses the use of by Douglas Gregor · 13 years ago
  55. 7f0a915 Fixed inconsistency when adding TemplateParameterListsInfo. by Abramo Bagnara · 13 years ago
  56. 3209669 The Darwin kernel does not provide useful guard variable support. by John McCall · 13 years ago
  57. a085da8 Fix PR9488: 'auto' type substitution can fail (for instance, if it creates a reference-to-void type). Don't crash if it does. by Richard Smith · 13 years ago
  58. 0a65f94 Rename -Wuninitialized-maybe to -Wconditional-uninitialized. by Ted Kremenek · 13 years ago
  59. 0daaf32 Use ElaboratedType also for C. by Abramo Bagnara · 13 years ago
  60. eef7ac5 Detect attempts to provide a specialization of a function within a by Douglas Gregor · 13 years ago
  61. 3cd0128 Having FileManager::getFile always open the file, brought much consternation and leaking of file descriptors. by Argyrios Kyrtzidis · 13 years ago
  62. db2eae6 Clean up our handling of template-ids that resolve down to a single by Douglas Gregor · 13 years ago
  63. 7839feb Remove a duplicate language feature by Peter Collingbourne · 13 years ago
  64. b5142bb Add a 'RawPath' parameter to the PPCallbacks interface. This allows by Chandler Carruth · 13 years ago
  65. c9977d0 Make sure that we always pop a function's scope *before* we call by Douglas Gregor · 13 years ago
  66. 250e7a7 When we're inserting a synthesized label declaration for a by Douglas Gregor · 13 years ago
  67. 24f4674 Added missing methods to get Designators source range. by Abramo Bagnara · 13 years ago
  68. db9e9e6 Remove warning for null characters in CFString literals. Clang handles them just fine, and GCC 4.2 doesn't warn here either. by Ted Kremenek · 13 years ago
  69. 99439d4 Implement a hack to work around the changing exception specification of operator new in C++0x. by Sebastian Redl · 13 years ago
  70. d0956fc Remove duplicate group definition that snuck in due to a merge conflict. by Ted Kremenek · 13 years ago
  71. 908c09f Take 2: merge -Wuninitialized-experimental into -Wuninitialized. Only *must-be-uninitialized* warnings are reported, with *maybe-uninitialized* under a separate flag. I await any fallout/comments/feedback, although hopefully this will produce no noise for users. by Ted Kremenek · 13 years ago
  72. 76709bf Split warnings from -Wuninitialized-experimental into "must-be-initialized" and "may-be-initialized" warnings, each controlled by different flags. by Ted Kremenek · 13 years ago
  73. f7bafc7 Split warnings from -Wuninitialized-experimental into "must-be-initialized" and "may-be-initialized" warnings, each controlled by different flags. by Ted Kremenek · 13 years ago
  74. 6f34213 Rename UninitializedValuesV2 to UninitializedValues. by Ted Kremenek · 13 years ago
  75. f3f5379 Remove old UninitializedValues analysis. by Ted Kremenek · 13 years ago
  76. 7cbc558 When synthesizing a label declaration based on a goto statement that by Douglas Gregor · 13 years ago
  77. 9fc90c1 Incorporate source ranges for RangeBugReport when coelescing reports into equivalence classes. by Ted Kremenek · 13 years ago
  78. a4fdbfa Block return type of the initialized must be by Fariborz Jahanian · 13 years ago
  79. 2e2468e Get rid of the static FileManager::FixupRelativePath. by Anders Carlsson · 13 years ago
  80. d05c200 Change GetNullarySelector and GetUnarySelector to take a StringRef. by Anders Carlsson · 13 years ago
  81. 8026f6d Instead of storing an ASTContext* in FunctionProtoTypes with computed noexcept specifiers, unique FunctionProtoTypes with a ContextualFoldingSet, as suggested by John McCall. by Sebastian Redl · 13 years ago
  82. 90ba78c Place duplicate argument declaration in in by Fariborz Jahanian · 13 years ago
  83. caa35e4 Revert "Disable inherited constructors for 2.9." by Sebastian Redl · 13 years ago
  84. a808c54 Disable inherited constructors for 2.9. by Sebastian Redl · 13 years ago
  85. 60618fa Propagate the new exception information to FunctionProtoType. by Sebastian Redl · 13 years ago
  86. 796aa44 Forgotten part of previous commit. by Abramo Bagnara · 13 years ago
  87. 06dec89 Renamed OffsetOfNode::getRange to getSourceRange for uniformity. by Abramo Bagnara · 13 years ago
  88. fadb53b Fixes for some more expressions containing function templateids that by Douglas Gregor · 13 years ago
  89. 6f4596c Implement a hack intended to allow Clang to parse libstdc++ 4.5's by Douglas Gregor · 13 years ago
  90. f4f7cb8 OpenCL: if double precision floating point constant encountered by Peter Collingbourne · 13 years ago
  91. f4e3cfb Add support for the OpenCL vec_step operator, by generalising and by Peter Collingbourne · 13 years ago
  92. c57c17d Avoid do drop outer template parameter lists on the floor. by Abramo Bagnara · 13 years ago
  93. 0d28d36 When doing reachability analysis for warnings issued under DiagRuntimeBehavior, don't construct a ParentMap or CFGStmtMap. by Ted Kremenek · 13 years ago
  94. b8ad5ee Rework interaction between AnalysisContext and CFG::BuildOptions to keep a BuildOptions object around instead of keeping a copy of the flags. by Ted Kremenek · 13 years ago
  95. 975cc64 Revert r127206 "Detect attempts to provide a specialization of a function within by Daniel Dunbar · 13 years ago
  96. 6147806 Lookup selector in protocol list of qualified objc type by Fariborz Jahanian · 13 years ago
  97. b0f4b9a Introduce '-chain-include' option to specify headers that will be converted to chained PCHs in memory by Argyrios Kyrtzidis · 13 years ago
  98. ba877ad Fixed InnerLocStart. by Abramo Bagnara · 13 years ago
  99. 02b3774 include/clang/Basic/BuiltinsX86.def: __builtin_ia32_crc32**() should be defined to take unsigned args and to return unsigned value. by NAKAMURA Takumi · 13 years ago
  100. 86f436f include/clang/Makefile: [PR2928] "make install" may install include files along explicit pattern, not to install CMake's building stuff. by NAKAMURA Takumi · 13 years ago