1. 2dc7ece Add -Wc++11-compat warning for an inline specifier on an explicit instantiation. by Richard Smith · 13 years ago
  2. 3e2e91e Refactor the checking for explicit template instantiations being performed in by Richard Smith · 13 years ago
  3. 85def35 In hasPlaceholderType(Kind) and isSpecificPlaceholderType(Kind), assert by John McCall · 13 years ago
  4. 841804b Add -Wc++98-compat warnings for uses of the new keywords 'alignof', 'char16_t', by Richard Smith · 13 years ago
  5. ea523d7 Wire up support for the controlling the extended dwarf .file directive. With by Nick Lewycky · 13 years ago
  6. 19706f8 Implement -static-libstdc++ for linux. by Rafael Espindola · 13 years ago
  7. 66d5ce1 Move about 20 random diagnostics under -W flags. Patch by Ahmed Charles! by Ted Kremenek · 13 years ago
  8. 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
  9. 9f80a97 Substitute for arguments in method calls -- refactoring by DeLesley Hutchins · 13 years ago
  10. abd2a3e Code completion chunks are pod-like. by Benjamin Kramer · 13 years ago
  11. 4e7064f [libclang] Introduce a new high level API for indexing clients that assumes by Argyrios Kyrtzidis · 13 years ago
  12. b4a686d Introduce ASTConsumer::HandleTopLevelDeclInObjCContainer which accepts by Argyrios Kyrtzidis · 13 years ago
  13. b05d7b2 Keep track when a ObjC interface/protocol was initially created as a forward reference. by Argyrios Kyrtzidis · 13 years ago
  14. 5acb0c9 Teach the ARC compiler to not require __bridge casts when by John McCall · 13 years ago
  15. 0ddaeb9 Add a new placeholder type to represent "unbridged" casts in ARC. by John McCall · 13 years ago
  16. 4919dfd Add a helper function for determining whether an expression by John McCall · 13 years ago
  17. aa93a87 For modules, all macros that aren't include guards are implicitly by Douglas Gregor · 13 years ago
  18. 05edf66 When building a module, use the macro definitions on the command line by Douglas Gregor · 13 years ago
  19. 1e12c59 Split apart the state accumulated during constant expression evaluation and the by Richard Smith · 13 years ago
  20. 20cdbeb Add sema checks for calls to functions taking static array parameters by Peter Collingbourne · 13 years ago
  21. c223518 Diagnose when omitting braces in direct list-initialization in C++0x. by Sebastian Redl · 13 years ago
  22. 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
  23. 4ba5565 Now that the structure of this is more reasonably laid out, fix a long by Chandler Carruth · 13 years ago
  24. 2ed3495 Add proper doxyments to the entry point routine, and remove a dead parameter. by Chandler Carruth · 13 years ago
  25. 21a869a Persist the TextDiagnostic object across multiple diagnostics as long as by Chandler Carruth · 13 years ago
  26. 7531f57 Clean up the names of all the TextDiagnostic methods (and even a static by Chandler Carruth · 13 years ago
  27. 6ddd887 Move two functions out of the public interface that shouldn't have ever by Chandler Carruth · 13 years ago
  28. db463bb Graduate the TextDiagnostic interface to its own header and source file, by Chandler Carruth · 13 years ago
  29. 03efd2e Rationalize the last bit of "arbitrary" state that is carried between by Chandler Carruth · 13 years ago
  30. d614040 Neither 'Warning' nor 'NonNote' was a good name for this location... by Chandler Carruth · 13 years ago
  31. cae9ab1 Sink the include stack printing into the generic text diagnostic by Chandler Carruth · 13 years ago
  32. f54a614 Rationalize some of how the locations of prior diagnostics are tracked by Chandler Carruth · 13 years ago
  33. 9ed3066 Sink the EmitDiagnosticLoc method down to the generic TextDiagnostic by Chandler Carruth · 13 years ago
  34. 60e4a2a Sink the non-caret diagnostic logic down and out of the diagnostic by Chandler Carruth · 13 years ago
  35. 55c6110 Simplify the interface of a helper method in the TextDiagnosticPrinter by Chandler Carruth · 13 years ago
  36. 2840928 Add an accessor for all of the ranges in a diagnostic as an ArrayRef. by Chandler Carruth · 13 years ago
  37. 0aa86c0 Add -Wc++98-compat warning for deduced 'auto' type specifier. by Richard Smith · 13 years ago
  38. 7fe6208 Implement -Wc++98-compat warnings for the parser. by Richard Smith · 13 years ago
  39. 6a2ccc5 Convert stray doxygen comments to regular comments. They logically represent the fields in FunctionProtoType. by Ted Kremenek · 13 years ago
  40. b8706f9 Revert "Move doxygen comments to pair with the actual values." by Ted Kremenek · 13 years ago
  41. d60feeb Use of override keywords in C++98 should produce a warning by default. by Richard Smith · 13 years ago
  42. 05f9931 Rename an ExtWarn to ext_ for consistency. by Richard Smith · 13 years ago
  43. 661a996 -Wc++98-compat warnings for the lexer. by Richard Smith · 13 years ago
  44. b75a345 Teach the ASTImporter to perform DeclContext lookups in a way that by Douglas Gregor · 13 years ago
  45. aa4a99b Provide half floating point support as a storage only type. by Anton Korobeynikov · 13 years ago
  46. dfa64ba Add template instantiation support for AtomicExpr. by Eli Friedman · 13 years ago
  47. 7c9412c Teach the ASTImporter not to import redundant fields. by Douglas Gregor · 13 years ago
  48. d9b0fdf vfork comes from unistd.h by Joerg Sonnenberger · 13 years ago
  49. abb5afa Allow calling ASTUnit::LoadFromCompilerInvocationAction with a previously created ASTUnit. by Argyrios Kyrtzidis · 13 years ago
  50. 2be4607 Misc fixes for atomics. Biggest fix is doing alignment correctly for _Atomic types. by Eli Friedman · 13 years ago
  51. 41be673 -Wc++98-compat: warn on C++11 attributes and alignas. by Richard Smith · 13 years ago
  52. 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
  53. fe6f648 [temp.explicit]p1: constexpr cannot be specified in explicit instantiations. by Richard Smith · 13 years ago
  54. b8989f2 Change operator<< for raw_ostream and NamedDecl to take a reference instead of a pointer. by Benjamin Kramer · 13 years ago
  55. 72b2625 [PCH] Serialize info about redeclared objc methods. by Argyrios Kyrtzidis · 13 years ago
  56. d5951cb Add flags for the remaining shift related warnings by Joerg Sonnenberger · 13 years ago
  57. a1de8cb objc-arc: Improve arc diagnostic when method is not by Fariborz Jahanian · 13 years ago
  58. cb1c9c3 Under ARC, merge the bit corresponding to the ns_returns_retained by Douglas Gregor · 13 years ago
  59. 9ce6377 Only warn in -Wliteral-conversion if the conversion loses information by Matt Beaumont-Gay · 13 years ago
  60. 2060650 When declaring an out-of-line template, attempt to rebuild any types by Douglas Gregor · 13 years ago
  61. 6164ea1 Added clang_getCompletionAnnotation and clang_getCompletionNumAnnotations to by Erik Verbruggen · 13 years ago
  62. 3a919e7 Really protect from infinite loop when there are objc method redeclarations. by Argyrios Kyrtzidis · 13 years ago
  63. b40034c Keep track of objc method redeclarations in the same interface. by Argyrios Kyrtzidis · 13 years ago
  64. 1f528a6 Move doxygen comments to pair with the actual values. by Ted Kremenek · 13 years ago
  65. 3d5f955 Add a preprocessor callback that is invoked every time the 'defined' by Douglas Gregor · 13 years ago
  66. 78f0ea7 Add support for -std=gnu90 and -std=c++03, for compatibility with modern gcc. by Richard Smith · 13 years ago
  67. f38eaa4 Revert the -Wc++98-compat flag because dgregor doesn't like it. by Jeffrey Yasskin · 13 years ago
  68. 575fdda Rename -Wc++0x-compat, -Wc++0x-extensions and -Wc++0x-narrowing from c++0x to by Richard Smith · 13 years ago
  69. cda5782 Extend -Wno-sizeof-array-argument to strncpy and friends. by Nico Weber · 13 years ago
  70. 48a9d18 Implement the first piece of a -Wc++98-compat flag so that people can build in by Jeffrey Yasskin · 13 years ago
  71. 9e76172 Tweak -Wuninitialized's handling of 'int x = x' to report that as the root cause of an uninitialized variable IFF there are other uses of that uninitialized variable. Fixes <rdar://problem/9259237>. by Ted Kremenek · 13 years ago
  72. 5f1c822 Allow for annotate attributes after access specifiers. When such by Erik Verbruggen · 13 years ago
  73. dac6cec Fix MSVC build. by Rafael Espindola · 13 years ago
  74. 6700415 Add returns_twice to functions that are known to return twice. This implements by Rafael Espindola · 13 years ago
  75. d768150 Implement built-in macro '__has_warning', which allows one to query if a warning flag is valid. Fixes <rdar://problem/10263428>. by Ted Kremenek · 13 years ago
  76. b3df138 Switch diagnostic text from "C++0x" over to "C++11". by Douglas Gregor · 13 years ago
  77. 920c9c1 Fix typo in name of diagnostic. by Ted Kremenek · 13 years ago
  78. 312fb51 Add -std=c++11 and -std=gnu++11 language flags, from Ahmed Charles by Douglas Gregor · 13 years ago
  79. 4a8dfb5 Introduce BalancedDelimiterTracker, to better track open/close by Douglas Gregor · 13 years ago
  80. 796dbfb Introduce SourceManager::getFileLoc which returns a file location by Argyrios Kyrtzidis · 13 years ago
  81. 5fa6a04 constexpr: don't consider class types with mutable members to be literal types. by Richard Smith · 13 years ago
  82. d5e1d60 Handle Perforce-style conflict markers like normal conflict markers. Perforce by Richard Smith · 13 years ago
  83. 6dbba4f Catch placeholder types in DefaultLvalueConversion by John McCall · 13 years ago
  84. 98d86b9 Add a -Wc++0x-compat warning for C++11 keywords used as identifiers when in by Richard Smith · 13 years ago
  85. 2492c89 Add support for viewing the module graph via Graphviz, for debugging purposes. by Douglas Gregor · 13 years ago
  86. 92d6d40 Driver: Add support for a new -nostdlibinc option. by Daniel Dunbar · 13 years ago
  87. a268fc0 Frontend: Replace -nostdinc by -nostdsysteminc (which is just system include by Daniel Dunbar · 13 years ago
  88. 71fdf46 [analyzer] Remove an unused member variable. by Anna Zaks · 13 years ago
  89. c892c5f For the FileChanged Preprocessor callback, when exiting a file, pass its FileID. by Argyrios Kyrtzidis · 13 years ago
  90. 769bb2d Get rid of ShouldDeleteMoveConstructor. by Sean Hunt · 13 years ago
  91. c32d684 Consolidate copy constructor deletion into ShouldDeleteSpecialMember. by Sean Hunt · 13 years ago
  92. 276b061 Initial implementation of __atomic_* (everything except __atomic_is_lock_free). by Eli Friedman · 13 years ago
  93. f11dbe9 [Microsoft] If -fms-compatibility, then downgrade missing typename error to warning at function prototype scope. by Francois Pichet · 13 years ago
  94. fac9467 Add typo correction for type names. by Kaelyn Uhrain · 13 years ago
  95. e1e7862 Place diagnostic group ext_typecheck_decl_incomplete_type under a -W flag. by Ted Kremenek · 13 years ago
  96. 2c712f5 Move some bool flags out of function parameter lists. by Kaelyn Uhrain · 13 years ago
  97. a696ece [libclang] Implement ConcurrencyCheck using a recursive mutex to allow re-entrancy in the same thread. by Argyrios Kyrtzidis · 13 years ago
  98. a6b8b2c Constant expression evaluation refactoring: by Richard Smith · 13 years ago
  99. 1055393 Give nicer note when a member redeclaration has or lacks 'const' by Kaelyn Uhrain · 13 years ago
  100. 36bc2c6 objc: Some refactoring of overriding method decl. code for future work. by Fariborz Jahanian · 13 years ago