1. 1bdac1d Reword warning about using a *static* variable within its own initialization. by Ted Kremenek · 11 years ago
  2. 77fd3c0 -Wuninitialized: warn about uninitialized values resulting from ?: that evaluate to lvalues (in C++). by Ted Kremenek · 11 years ago
  3. 299adab Remove windows line endings. by David Blaikie · 11 years ago
  4. 8dc3c80 Remove unused variable by Matt Beaumont-Gay · 11 years ago
  5. 728bb4c Adopt llvm::hexDigitValue. by Jordan Rose · 11 years ago
  6. cd6bfd0 Fix mismatched #endif. by Jordan Rose · 11 years ago
  7. 22eaced Once we've collected the template arguments for a by Douglas Gregor · 11 years ago
  8. 0ecc2e9 Thread-safety analysis: ignore edges from throw expressions in CFG. by DeLesley Hutchins · 11 years ago
  9. 79188ae Include ubsan runtime even when building a shared library. We don't require the executable to be linked with UBSan. by Richard Smith · 11 years ago
  10. dbee949 [mips] Enable inlining of atomic ops on mips32 and mips64. by Akira Hatanaka · 11 years ago
  11. e67e4c9 Use the AttributeSet query method instead of the Attribute method. by Bill Wendling · 11 years ago
  12. f953276 [PCH/Modules] Re-apply r172620 and r172629, now with 100% less infinite loops! by Argyrios Kyrtzidis · 11 years ago
  13. 55fc3a7 Fix parsing of class specifiers before '\n' 'operator'. by Nico Weber · 11 years ago
  14. e02be97 [analyzer] Special path notes for C++ special member functions. by Jordan Rose · 11 years ago
  15. dc47c9a [analyzer] Do a better job describing C++ member functions in the call stack. by Jordan Rose · 11 years ago
  16. ba287dc Fix comment. by Manuel Klimek · 11 years ago
  17. 4c12812 Fixes issues around pulling in the next line in simple if statements. by Manuel Klimek · 11 years ago
  18. ea8bca7 clang/test/CodeGen: Suppress a couple of tests on win32. It seems -fsanitize-blacklist doesn't accept DOSish pathnames. by NAKAMURA Takumi · 11 years ago
  19. 525fe16 Fixes problems with line merging in the face of preprocessor directives. by Manuel Klimek · 11 years ago
  20. b8238b6 clang-check: Introduce llvm::sys::PrintStackTraceOnErrorSignal() by NAKAMURA Takumi · 11 years ago
  21. 4f45bc0 [ubsan] Add support for -fsanitize-blacklist by Will Dietz · 11 years ago
  22. c79afda Reduce penalty for splitting between ")" and ".". by Daniel Jasper · 11 years ago
  23. 7d1185d Also align trailing line comments in include directives. by Daniel Jasper · 11 years ago
  24. dcc2a62 Let the formatter align trailing line comments where possible. by Daniel Jasper · 11 years ago
  25. 94fb729 Formatter: After case blocks, "break" goes on the same line as the "}", PR14907. by Nico Weber · 11 years ago
  26. 5dfe9b4 Formatter: Enable @encode test. by Nico Weber · 11 years ago
  27. d3b036e Revert Clang r172620 and r172629, which caused a hang when building by Douglas Gregor · 11 years ago
  28. 6a21a55 Formatter: The contents of @selector() should be formatted as a selector. by Nico Weber · 11 years ago
  29. f373c5d When checking the parameter types of an Objective-C method, don't by Douglas Gregor · 11 years ago
  30. 96bd14b [ms-inline asm] Test case for r172773. by Chad Rosier · 11 years ago
  31. 92d1387 One can override an Objective-C ARC ownership qualifier that came from by Douglas Gregor · 11 years ago
  32. ba57183 Some builtins do not evaluate their arguments. Teach EvaluatedExprVisitor not by Richard Smith · 11 years ago
  33. 02dd798 In Objective-C ARC, completely ignore ownership qualifiers on the by Douglas Gregor · 11 years ago
  34. fa2b53c [analyzer] DirectIvarAssignment: allow suppression annotation on Ivars. by Anna Zaks · 11 years ago
  35. 1a2dcd5 Defer checking for unsequenced operations on the RHS of && and || in order to by Richard Smith · 11 years ago
  36. cdbe1e0 Format strings: don't ever convert %+d to %lu. by Jordan Rose · 11 years ago
  37. de03c15 Parsing support for C11's _Noreturn keyword. No semantics yet. by Richard Smith · 11 years ago
  38. 995e4a7 -Wunsequenced: if the LHS of an &&, || or ?: is not constant, check for by Richard Smith · 11 years ago
  39. 0234179 We want the dwarf AT_producer for assembly source files to match clang's by Kevin Enderby · 11 years ago
  40. 17d481f Do not pass -pie flag to linker if -shared specified. This matches by Peter Collingbourne · 11 years ago
  41. 205ecf0 [ms-inline asm] Updates and test case for r172743. Part of rdar://12576868 by Chad Rosier · 11 years ago
  42. b8b5cbc [ms-inline asm] Extend the Sema interface to get the size and length of a by Chad Rosier · 11 years ago
  43. 242ae3d Format strings: correct signedness if already correcting width (%d,%u). by Jordan Rose · 11 years ago
  44. c8145bb Convert test/FixIt/format-darwin.m to use relative line numbers. by Jordan Rose · 11 years ago
  45. 617bb31 Add some semantic checks for OpenCL. Variadic macros, VLAs and bitfields are not supported. by Joey Gouly · 11 years ago
  46. 5096a44 Formatter: Get bit tests in ifs right. by Nico Weber · 11 years ago
  47. 21937c6 Documentation: formatting by Dmitri Gribenko · 11 years ago
  48. 60ca75d Allow breaking after the trailing const after a function declaration. by Daniel Jasper · 11 years ago
  49. df96e02 Add initial rough support for synthesizing linker options when passed by Chandler Carruth · 11 years ago
  50. 2c6cc48 Improve handling of comments in static initializers. by Daniel Jasper · 11 years ago
  51. ee000bb Improve -Wreorder to handle cases of anonymous class member ordering by David Blaikie · 11 years ago
  52. 334111d clang/test/Index/code-completion-skip-bodies.cpp: Check stdout and stderr individually, rather than mixed output of stdout and stderr with 2>&1. by NAKAMURA Takumi · 11 years ago
  53. aab6005 Revert most of r172140. by Nico Weber · 11 years ago
  54. 93c8617 ArrayRef-ize some ctor initializer related APIs by David Blaikie · 11 years ago
  55. 72190da Remove some unnecessary casts by David Blaikie · 11 years ago
  56. 459455b Add test for PR12938, fixed by Richard Smith in r172691 by David Blaikie · 11 years ago
  57. 87b73ba Suppress all -Wunused-value warnings from macro body expansions. by Matt Beaumont-Gay · 11 years ago
  58. 6987e8d Add a comment for Daniel by Douglas Gregor · 11 years ago
  59. dca97dd Test that we correctly handle reversion of line splicing etc in raw string by Richard Smith · 11 years ago
  60. e5096c8 Attempt to work around bug in older GCCs to fix buildbot. by Richard Smith · 11 years ago
  61. f9d03c1 [IRgen] Update modules autolink metadata to use module flags (as now specified by Daniel Dunbar · 11 years ago
  62. cd8ab51 Implement C++11 semantics for [[noreturn]] attribute. This required splitting by Richard Smith · 11 years ago
  63. 6c3af3d Add -Wunsequenced (with compatibility alias -Wsequence-point) to warn on by Richard Smith · 11 years ago
  64. 4637d18 clang/test/Modules/compiler_builtins.m: Mark this as XFAIL:win32 for now. Investigating. by NAKAMURA Takumi · 11 years ago
  65. 0f9b9f3 Treat hidden Objective-C protocol definitions as if they were by Douglas Gregor · 11 years ago
  66. a6f9707 Implement a fixit for -Wmain-return-type by Dmitri Gribenko · 11 years ago
  67. 90a2d39 objC block layout: Patch reorders block layout to by Fariborz Jahanian · 11 years ago
  68. 1c23975 Fix a typo introduced in r172665. by Matt Beaumont-Gay · 11 years ago
  69. a44b970 [objcmt] Rewrite a NSDictionary dictionaryWithObjects:forKeys: to a dictionary literal by Argyrios Kyrtzidis · 11 years ago
  70. 4d8a33b Delay linkage checks when validating the weakref attribute. by Rafael Espindola · 11 years ago
  71. afb7ce3 Fixes crash when illegal function definitions are deleted or defaulted. Fixes PR14577. by Aaron Ballman · 11 years ago
  72. 2df0df8 Simplify code. No functionality change. by Rafael Espindola · 11 years ago
  73. 0a3cbd0 Remove unnecessary initialization i Added in r172668. by David Blaikie · 11 years ago
  74. 41a5fc5 Readd an open paren that was lost while reformatting code. by David Blaikie · 11 years ago
  75. 4944606 Fix -Wreorder warning. by David Blaikie · 11 years ago
  76. 2a5bb50 Check for internal weak decls after merging. by Rafael Espindola · 11 years ago
  77. 4f918ae PR14964: intrinsic headers using non-reserved identifiers by David Blaikie · 11 years ago
  78. d329724 Rework the traversal of Objective-C categories and extensions to by Douglas Gregor · 11 years ago
  79. 804381d Use getProcessTriple in clang-interpreter. by Peter Collingbourne · 11 years ago
  80. f109afd Add raw string literal versus C preprocessor test, suggested by James Dennett. by Richard Smith · 11 years ago
  81. 04c226a Fix recent test for more diverse environments. by Tim Northover · 11 years ago
  82. c4a0401 Correct order of operands forwarding NEON vfma to LLVM fma by Tim Northover · 11 years ago
  83. 214ea9d Move initialization of ParsingIfOrElifDirective down next to the macro by Eric Christopher · 11 years ago
  84. c3ad100 Add testcase missed yesterday. Patch from Paul Robinson. by Eric Christopher · 11 years ago
  85. f5a45ea Adding verbiage to the Language Extensions document about __has_include and __has_include_next only being allowed within preprocessor directives. by Aaron Ballman · 11 years ago
  86. 31672b1 No longer crashing with an assert when __has_include or __has_include_next is used outside of a preprocessor directive. This fixes PR14837. by Aaron Ballman · 11 years ago
  87. f0e0004 Teach global selector lookup to ignore hidden methods, which occur by Douglas Gregor · 11 years ago
  88. d7bf4a4 [libclang] In clang_reparseTranslationUnit_Impl, move the check whether TU is by Argyrios Kyrtzidis · 11 years ago
  89. f7f1264 [PCH/Modules] The iterator may become invalidated because a new macro can be added by Argyrios Kyrtzidis · 11 years ago
  90. 7dfd182 First step in implementation of mips16 and nomips16 attributes. by Reed Kotler · 11 years ago
  91. 93cf969 [libclang] In clang_getCursorType, don't crash if the translation unit is not by Argyrios Kyrtzidis · 11 years ago
  92. 1661824 Fix a bug where we would move a following line into a comment. by Daniel Jasper · 11 years ago
  93. 3684547 [preprocessor] Call the MacroUndefined callback even when the macro was not defined. by Argyrios Kyrtzidis · 11 years ago
  94. 1f2b078 Fix parsing error in conditional expressions. by Daniel Jasper · 11 years ago
  95. 7f69b1a [PCH/Modules] Change how macro [re]definitions are de/serialized. by Argyrios Kyrtzidis · 11 years ago
  96. 48bd7b7 Improve understanding of unary operators. by Daniel Jasper · 11 years ago
  97. df3736a Disable inlining of short ifs in Google style. by Daniel Jasper · 11 years ago
  98. 0df6acd Add option to avoid "bin-packing" of parameters. by Daniel Jasper · 11 years ago
  99. ca547db Add debugging support for split penalties. by Manuel Klimek · 11 years ago
  100. 8fa3799 Use standard llvm Debug.h support for debugging output. by Manuel Klimek · 11 years ago