1. e6f0868 [PCH] When serializing Stmts, keep track of when sub statements are referenced again and by Argyrios Kyrtzidis · 13 years ago
  2. 21f77cd Don't try to set the "array filler" in a InitListExpr twice. by Argyrios Kyrtzidis · 13 years ago
  3. 227e483 More ASTRecordLayout changes for MS ABI; based on patch by r4start. by Eli Friedman · 13 years ago
  4. f1ac637 Thread safety analysis refactoring: invalid lock expressions. by DeLesley Hutchins · 13 years ago
  5. 381509e Added documentation for the recently-added by Sean Callanan · 13 years ago
  6. b57791e Treat the Microsoft/Borland keyword "__except" as a context-sensitive by Douglas Gregor · 13 years ago
  7. 9faf810 I added a new function to DeclContext called by Sean Callanan · 13 years ago
  8. 7c4fd91 Take DW_AT_comp_dir from $PWD when it's present and starts with a '/'. This is by Nick Lewycky · 13 years ago
  9. 0e9e981 Add -Wc++98-compat diagnostics for jumps which bypass initialization of non-POD by Richard Smith · 13 years ago
  10. 9324583 'extern template' is a C++11 feature. Add an Extension for C++98 (this matches by Richard Smith · 13 years ago
  11. cb8f951 There's no point in marking a declaration invalid just because it by Douglas Gregor · 13 years ago
  12. afdc21a Further refine the diagnostic categories for ARC diagnostics. Addresses <rdar://problem/10245086>. by Ted Kremenek · 13 years ago
  13. 95aafb2 Add -Wc++98-compat warning for enumerations in nested name specifiers. by Richard Smith · 13 years ago
  14. f6f876c Add a fixit to remove storage specifiers on anonymous enums. by David Blaikie · 13 years ago
  15. 70042f5 Fix all 80 col violations in include/clang/Basic, plus any trailing whitespace in the files I'm touching anyway. by David Blaikie · 13 years ago
  16. 0706df4 Improve the diagnostic when a comma ends up at the end of a declarator group by Richard Smith · 13 years ago
  17. e7d7c39 -Wc++98-compat: warn on nontrivial types used in unions and anonymous structs. by Richard Smith · 13 years ago
  18. 83da2e7 -Wc++98-compat: diagnose if a reference is bound to a prvalue which does not by Richard Smith · 13 years ago
  19. 18c9bd3 Fix the signatures of vfork, __sigsetjmp and sigsetjmp. by Rafael Espindola · 13 years ago
  20. 43f5103 Improve the warning for cv-qualifiers on free functions, from Ahmed Charles! by Douglas Gregor · 13 years ago
  21. 53e5351 Add a -Wc++98-compat warning for friend functions of class templates which would by Richard Smith · 13 years ago
  22. 013e5ce Move static array parameter checks to SemaExpr, per Doug's request by Peter Collingbourne · 13 years ago
  23. 77faa36 -Wc++98-compat: warn if a SFINAE substitution in C++11 suppresses an access by Richard Smith · 13 years ago
  24. c9003c8 [analyzer] Move predecessor into the NodeBuilder context. by Anna Zaks · 13 years ago
  25. 4e82d3c [analyzer] Make NodeBuilder and Pred node loosely coupled by Anna Zaks · 13 years ago
  26. 3152b3c [analyzer] Remove StmtNodeBuilder from CheckerContext by Anna Zaks · 13 years ago
  27. 319a918 [analyzer] Subclassing StmtBuilder from the NodeBuilder by Anna Zaks · 13 years ago
  28. 67d9fba [analyzer] Remove dead code. ExprEngineBuilders is not used. by Anna Zaks · 13 years ago
  29. 9a1e3ab [analyzer] Remove redundant method + whitespace. by Anna Zaks · 13 years ago
  30. cd656ca [analyzer] Modularize builder use in processBranch. by Anna Zaks · 13 years ago
  31. ad62dee [analyzer] Pull Pred out of NodeBuilderContext. by Anna Zaks · 13 years ago
  32. 8c90aad [analyzer] Rely only on NodeBuilder inside CheckerContext. by Anna Zaks · 13 years ago
  33. d0b0806 [analyzer] Remove redundant assignment operator. by Anna Zaks · 13 years ago
  34. a19f4af [analyzer] NodeBuilder Refactoring: Subclass BranchNodeBuilder from NodeBuilder. by Anna Zaks · 13 years ago
  35. f05aac8 [analyzer] Node Builder refactoring: Introduce a simple Node Builder responsible for generating the node frontier. by Anna Zaks · 13 years ago
  36. c705d25 [libclang] Make sure we do a correct invalid check in clang_getExpansionLocation. by Argyrios Kyrtzidis · 13 years ago
  37. 6b13022 -Wc++98-compat and -Wc++98-compat-pedantic warnings for Sema, part 2. by Richard Smith · 13 years ago
  38. 097f6b0 Remove unused data member by Douglas Gregor · 13 years ago
  39. e0a22d0 Macro metaprogramming for builtin types. by John McCall · 13 years ago
  40. ebaf0e6 -Wc++98-compat and -Wc++98-compat-pedantic warnings for Sema, part 1. by Richard Smith · 13 years ago
  41. 024f4be Frontend: Support -iframework. by Daniel Dunbar · 13 years ago
  42. 7a81e41 objc: diagnose invalid argument to an by Fariborz Jahanian · 13 years ago
  43. 341350e Make it possible to compute the type of 'this' without capturing by Douglas Gregor · 13 years ago
  44. aca19be [libclang] Index implicit property references. by Argyrios Kyrtzidis · 13 years ago
  45. a7da215 Suggest %zu for size_t args to printf. by Hans Wennborg · 13 years ago
  46. 2dc7ece Add -Wc++11-compat warning for an inline specifier on an explicit instantiation. by Richard Smith · 13 years ago
  47. 3e2e91e Refactor the checking for explicit template instantiations being performed in by Richard Smith · 13 years ago
  48. 85def35 In hasPlaceholderType(Kind) and isSpecificPlaceholderType(Kind), assert by John McCall · 13 years ago
  49. 841804b Add -Wc++98-compat warnings for uses of the new keywords 'alignof', 'char16_t', by Richard Smith · 13 years ago
  50. ea523d7 Wire up support for the controlling the extended dwarf .file directive. With by Nick Lewycky · 13 years ago
  51. 19706f8 Implement -static-libstdc++ for linux. by Rafael Espindola · 13 years ago
  52. 66d5ce1 Move about 20 random diagnostics under -W flags. Patch by Ahmed Charles! by Ted Kremenek · 13 years ago
  53. 454b57a Initial implementation of __atomic_is_lock_free. The input is the size of an atomic type rather than an atomic type itself just to save some implementation pain; I can change that if it seems worthwhile. by Eli Friedman · 13 years ago
  54. 9f80a97 Substitute for arguments in method calls -- refactoring by DeLesley Hutchins · 13 years ago
  55. abd2a3e Code completion chunks are pod-like. by Benjamin Kramer · 13 years ago
  56. 4e7064f [libclang] Introduce a new high level API for indexing clients that assumes by Argyrios Kyrtzidis · 13 years ago
  57. b4a686d Introduce ASTConsumer::HandleTopLevelDeclInObjCContainer which accepts by Argyrios Kyrtzidis · 13 years ago
  58. b05d7b2 Keep track when a ObjC interface/protocol was initially created as a forward reference. by Argyrios Kyrtzidis · 13 years ago
  59. 5acb0c9 Teach the ARC compiler to not require __bridge casts when by John McCall · 13 years ago
  60. 0ddaeb9 Add a new placeholder type to represent "unbridged" casts in ARC. by John McCall · 13 years ago
  61. 4919dfd Add a helper function for determining whether an expression by John McCall · 13 years ago
  62. aa93a87 For modules, all macros that aren't include guards are implicitly by Douglas Gregor · 13 years ago
  63. 05edf66 When building a module, use the macro definitions on the command line by Douglas Gregor · 13 years ago
  64. 1e12c59 Split apart the state accumulated during constant expression evaluation and the by Richard Smith · 13 years ago
  65. 20cdbeb Add sema checks for calls to functions taking static array parameters by Peter Collingbourne · 13 years ago
  66. c223518 Diagnose when omitting braces in direct list-initialization in C++0x. by Sebastian Redl · 13 years ago
  67. 091fffe Drop the Diagnose parameter from Sema::PerformImplicitConversion again and instead use TryImplicitConversion in CheckSingleAssignmentConstraints when that function is in no-diagnostics mode. by Sebastian Redl · 13 years ago
  68. 4ba5565 Now that the structure of this is more reasonably laid out, fix a long by Chandler Carruth · 13 years ago
  69. 2ed3495 Add proper doxyments to the entry point routine, and remove a dead parameter. by Chandler Carruth · 13 years ago
  70. 21a869a Persist the TextDiagnostic object across multiple diagnostics as long as by Chandler Carruth · 13 years ago
  71. 7531f57 Clean up the names of all the TextDiagnostic methods (and even a static by Chandler Carruth · 13 years ago
  72. 6ddd887 Move two functions out of the public interface that shouldn't have ever by Chandler Carruth · 13 years ago
  73. db463bb Graduate the TextDiagnostic interface to its own header and source file, by Chandler Carruth · 13 years ago
  74. 03efd2e Rationalize the last bit of "arbitrary" state that is carried between by Chandler Carruth · 13 years ago
  75. d614040 Neither 'Warning' nor 'NonNote' was a good name for this location... by Chandler Carruth · 13 years ago
  76. cae9ab1 Sink the include stack printing into the generic text diagnostic by Chandler Carruth · 13 years ago
  77. f54a614 Rationalize some of how the locations of prior diagnostics are tracked by Chandler Carruth · 13 years ago
  78. 9ed3066 Sink the EmitDiagnosticLoc method down to the generic TextDiagnostic by Chandler Carruth · 13 years ago
  79. 60e4a2a Sink the non-caret diagnostic logic down and out of the diagnostic by Chandler Carruth · 13 years ago
  80. 55c6110 Simplify the interface of a helper method in the TextDiagnosticPrinter by Chandler Carruth · 13 years ago
  81. 2840928 Add an accessor for all of the ranges in a diagnostic as an ArrayRef. by Chandler Carruth · 13 years ago
  82. 0aa86c0 Add -Wc++98-compat warning for deduced 'auto' type specifier. by Richard Smith · 13 years ago
  83. 7fe6208 Implement -Wc++98-compat warnings for the parser. by Richard Smith · 13 years ago
  84. 6a2ccc5 Convert stray doxygen comments to regular comments. They logically represent the fields in FunctionProtoType. by Ted Kremenek · 13 years ago
  85. b8706f9 Revert "Move doxygen comments to pair with the actual values." by Ted Kremenek · 13 years ago
  86. d60feeb Use of override keywords in C++98 should produce a warning by default. by Richard Smith · 13 years ago
  87. 05f9931 Rename an ExtWarn to ext_ for consistency. by Richard Smith · 13 years ago
  88. 661a996 -Wc++98-compat warnings for the lexer. by Richard Smith · 13 years ago
  89. b75a345 Teach the ASTImporter to perform DeclContext lookups in a way that by Douglas Gregor · 13 years ago
  90. aa4a99b Provide half floating point support as a storage only type. by Anton Korobeynikov · 13 years ago
  91. dfa64ba Add template instantiation support for AtomicExpr. by Eli Friedman · 13 years ago
  92. 7c9412c Teach the ASTImporter not to import redundant fields. by Douglas Gregor · 13 years ago
  93. d9b0fdf vfork comes from unistd.h by Joerg Sonnenberger · 13 years ago
  94. abb5afa Allow calling ASTUnit::LoadFromCompilerInvocationAction with a previously created ASTUnit. by Argyrios Kyrtzidis · 13 years ago
  95. 2be4607 Misc fixes for atomics. Biggest fix is doing alignment correctly for _Atomic types. by Eli Friedman · 13 years ago
  96. 41be673 -Wc++98-compat: warn on C++11 attributes and alignas. by Richard Smith · 13 years ago
  97. e5acd13 Reinstate r141898 (reverted in r141921), without the -Wc++98-compat-variadic-templates flag. Consensus is that -Wc++98-compat is a useful addition to clang, but per-C++11-feature warnings may not be. by Richard Smith · 13 years ago
  98. fe6f648 [temp.explicit]p1: constexpr cannot be specified in explicit instantiations. by Richard Smith · 13 years ago
  99. b8989f2 Change operator<< for raw_ostream and NamedDecl to take a reference instead of a pointer. by Benjamin Kramer · 13 years ago
  100. 72b2625 [PCH] Serialize info about redeclared objc methods. by Argyrios Kyrtzidis · 13 years ago