1. f195f2c add support for conditional expressions in Expr::HasSideEffects() by Nuno Lopes · 12 years ago
  2. 916ea65 Move a bunch of the attribute warnings under the IgnoreAttributes group. Cleaned up test case. by Tanya Lattner · 12 years ago
  3. 0eaf69d Comment AST nodes: rename getXXXCount() methods to getNumXXXs() to be in line with Statement AST nodes. by Dmitri Gribenko · 12 years ago
  4. 6b60370 Apply visibility pragmas to class template declarations. This is needed because by Rafael Espindola · 12 years ago
  5. b04b731 Use -fvisibility-inlines-hidden in inline functions too. This matches gcc by Rafael Espindola · 12 years ago
  6. 69b5e95 Move helper class into an anonymous namespace. by Benjamin Kramer · 12 years ago
  7. 7bf9d9b Mention -ftls-model in release notes and manual. by Hans Wennborg · 12 years ago
  8. a3c7096 Allows retrieving all files in a CompilationDatabase. by Manuel Klimek · 12 years ago
  9. 838925d Provide a special-case diagnostic when two class member functions instantiate by Richard Smith · 12 years ago
  10. d3d02dd Fix a bug in my previous commit. The problem is not that we were not using the by Rafael Espindola · 12 years ago
  11. abd56c8 Attaching comments to declarations during parsing: handle more Objective-C declarations. by Dmitri Gribenko · 12 years ago
  12. bb39c3f Also remove include directory for libComments. by Dmitri Gribenko · 12 years ago
  13. 46db2fb Remove empty lib/Comments directory. by Dmitri Gribenko · 12 years ago
  14. 3f38bf2 Comment parsing: repaint the bikesched: rename 'HTML open tags' to 'HTML start tags' and 'HTML close tags' to 'HTML end tags' according to HTML spec. by Dmitri Gribenko · 12 years ago
  15. 3d98698 Make concepts of optional and forbidden end tags separate. Thanks Jordan for pointing this! by Dmitri Gribenko · 12 years ago
  16. 2345820 Use the canonical template decl when trying to find if it has a visibility by Rafael Espindola · 12 years ago
  17. 59d7cc9 Updates the example to the latest incarnation of clang-check and by Manuel Klimek · 12 years ago
  18. 99b28e7 Always initialize variable. If opening quote is the last character in comment, we will be using an uninitialized value. There is already a test for that in unittests/AST/CommentLexer.cpp, but it seems like we were lucky with the value that got loaded into the variable so the test passed. by Dmitri Gribenko · 12 years ago
  19. 140d513 Updated -help message in clang-check. by Alexander Kornienko · 12 years ago
  20. f9aed96 [Windows] Split the back reference tests into two separate files as the templates are getting hairy by Timur Iskhodzhanov · 12 years ago
  21. 6fcac5d test/CodeGen/rdrand-builtins.c: Define __MM_MALLOC_H before including <*mmintrin.h> . by NAKAMURA Takumi · 12 years ago
  22. a1c387e Don't include mm_malloc.h in test, it pulls in system headers on msvc. by Benjamin Kramer · 12 years ago
  23. 8f88a1d [Windows] Use thiscall as the default calling convention for class methods. PR12785 by Timur Iskhodzhanov · 12 years ago
  24. 9a50249 Add _rdrand{16,32,64}_step intrinsics to immintrin.h by Benjamin Kramer · 12 years ago
  25. 6a12449 This commit combines three patches to the ASTMatchers. by Daniel Jasper · 12 years ago
  26. c7bd9fb Be lax about trailing whitespace when checking fixit formatting, this depends on locale settings. by Benjamin Kramer · 12 years ago
  27. af082c3 PR13312: Don't crash when printing a fixit that ends in a unicode character. by Benjamin Kramer · 12 years ago
  28. be51e43 [clang.py] Implement Token API by Gregory Szorc · 12 years ago
  29. 0f1964a [clang.py] Add TranslationUnit.get_{file,source_location,source_range} by Gregory Szorc · 12 years ago
  30. 9537e20 [clang.py] Refactor how ctypes functions are registered by Gregory Szorc · 12 years ago
  31. 5e06529 Process #pragma visibility early in the parsing of class definitions. Fixes by Rafael Espindola · 12 years ago
  32. f729ce0 Ignore visibility attributes after definitions. This matches newer (4.7) gcc's by Rafael Espindola · 12 years ago
  33. 6a1f94b Revert r160052, "Default to -std=c++11 on Windows.", for now. by NAKAMURA Takumi · 12 years ago
  34. f7226fb Add the ObjFW runtime. Patch by Jonathan Schleifer! by John McCall · 12 years ago
  35. dc5796c AST/CommentSema.cpp: Fix signess in abs() to appease msvc. It would not make sense to pass (unsigned)-(unsigned) to abs(). by NAKAMURA Takumi · 12 years ago
  36. f9181a7 clang/lib/Basic/CMakeLists.txt: Add missing dependency, ClangDiagnosticComment. by NAKAMURA Takumi · 12 years ago
  37. c36b30c [analyzer] Don't inline virtual calls unless we can devirtualize properly. by Jordan Rose · 12 years ago
  38. 198871c Add OpenCL metadata for kernel arg names. This output is controlled via a flag as noted in the OpenCL Spec. by Tanya Lattner · 12 years ago
  39. 8951067 Don't try to do RVO on block variables that refer to an enclosing local. by Nico Weber · 12 years ago
  40. e3f470a Stop instantiating a class if we hit a static_assert failure. Also, if the by Richard Smith · 12 years ago
  41. 18b7f95 Fix warning. by Richard Smith · 12 years ago
  42. a5ef44f Enable comment parsing and semantic analysis to emit diagnostics. A few by Dmitri Gribenko · 12 years ago
  43. ff39896 Introduce a flag in SourceManager to treat non-system source files by Argyrios Kyrtzidis · 12 years ago
  44. 4b49756 Start testing some commented-out cases of badly-formed __has_include. by Jordan Rose · 12 years ago
  45. 78541c4 Allow -verify directives to be filtered by preprocessing. by Jordan Rose · 12 years ago
  46. 2db5abb Move CompileAssert into namespace clang::ast_matchers:: to avoid naming by Daniel Jasper · 12 years ago
  47. 068040e Add a hook to supply a custom CompilationDatabase. To add a custom CompilationDatabase, make it implement findCompilationDatabaseForDirectory in CustomCompilationDatabase.h and set USE_COSTUM_COMPILATION_DATABASE. by Daniel Jasper · 12 years ago
  48. 0337efd [driver] Fix so that clang can find correct path prefix for libc object files by Chad Rosier · 12 years ago
  49. 8d71918 Handle #pragma visibility in explicit specializations and enums. by Rafael Espindola · 12 years ago
  50. d4047b3 Mention -fms-compatibility and -fdelayed-template-parsing in UsersManual. by Nico Weber · 12 years ago
  51. c6d64a2 Emit -verify diagnostics even when we have a fatal error. by Jordan Rose · 12 years ago
  52. 85663e7 Default to -std=c++11 on Windows. by Nico Weber · 12 years ago
  53. 202c054 Remove unused override of CompilerInvocation::setLangDefaults(). by Nico Weber · 12 years ago
  54. 9903e94 Fix handling of curly braces in NVPTX inline asm by Justin Holewinski · 12 years ago
  55. c852e9f Temporarily revert this to see if it brings the gdb bot back. by Eric Christopher · 12 years ago
  56. d217a66 Fix usage instructions for clang-check. by Daniel Jasper · 12 years ago
  57. a7f2c56 How to set up clang tools for llvm by Alexander Kornienko · 12 years ago
  58. 0ca4be3 clang/test/Misc/diag-template-diffing-color.cpp: Introduce the feature 'ansi-escape-sequences'. by NAKAMURA Takumi · 12 years ago
  59. be77959 LLVM_ON_WIN32 case: use the proper key in the UniqueFiles map. by Axel Naumann · 12 years ago
  60. f2f15b3 Don't process #pragma visibility during instantiation. The visibility of the by Rafael Espindola · 12 years ago
  61. 3d40f96 The end of a block doesn't necessarily need a line table entry unless by Eric Christopher · 12 years ago
  62. 81e5a93 FileCheck-ize. by Eric Christopher · 12 years ago
  63. 0ffbfd1 [analyzer] Add debug.DumpCalls, which prints out any CallEvents it sees. by Jordan Rose · 12 years ago
  64. 5ef6e94 [analyzer] Guard against C++ member functions that look like system functions. by Jordan Rose · 12 years ago
  65. a4334df Fix crash when constant-evaluating a CXXConstructExpr representing by Richard Smith · 12 years ago
  66. 48b6247 [analyzer] Construct stack variables directly in their VarDecl. by Jordan Rose · 12 years ago
  67. e54cfc7 [analyzer] Use CallEvent for building inlined stack frames. by Jordan Rose · 12 years ago
  68. 852aa0d [analyzer] Make CallEnter, CallExitBegin, and CallExitEnd not be StmtPoints by Jordan Rose · 12 years ago
  69. 8d276d3 [analyzer] Add a CXXDestructorCall CallEvent. by Jordan Rose · 12 years ago
  70. 28038f3 [analyzer] Add new PreImplicitCall and PostImplicitCall ProgramPoints. by Jordan Rose · 12 years ago
  71. 1310611 Thread safety analysis: impove handling of trylock expressions. by DeLesley Hutchins · 12 years ago
  72. b660446 80-column violations and whitespace. by Chad Rosier · 12 years ago
  73. e0e6b9e Add more matchers and do cleanups. by Daniel Jasper · 12 years ago
  74. 78a0ce4 Disable death tests on platforms which don't support them. by Benjamin Kramer · 12 years ago
  75. 4187df5 Adds support for auto-detection of compilation databases, looking in a directory and all its parents. by Arnaud A. de Grandmaison · 12 years ago
  76. 5ba0559 Improve r159256 following Chandler's comments: by Axel Naumann · 12 years ago
  77. 783db50 [analyzer] Remove redundant check (scalar type is a superset of integer) by Anna Zaks · 12 years ago
  78. e445e5d Clear diagnostic counts after processing the diagnostics. by Axel Naumann · 12 years ago
  79. e265c87 Fixes the MSVC build. by Manuel Klimek · 12 years ago
  80. 8fa2fb8 Adds support for auto-detection of compilation databases by Manuel Klimek · 12 years ago
  81. 3f6d513 Update the docs with specifics about escaping of compile commands. by Manuel Klimek · 12 years ago
  82. f6385a5 Jordan points out that this was incorrect: clang should recover from by Chris Lattner · 12 years ago
  83. 3b81b7d Allow -verify directives to specify a min and max count, not just "+". by Jordan Rose · 12 years ago
  84. aa48fe8 Allow line numbers on -verify directives. by Jordan Rose · 12 years ago
  85. 4313c01 Clean up VerifyDiagnosticsConsumer in preparation for upcoming enhancements. by Jordan Rose · 12 years ago
  86. 5409d28 Properly update the FormattedArgs vector when the template type diffing falls by Richard Trieu · 12 years ago
  87. 6241e01 Add an explanation of -Wobjc-literal-compare to the "Objective-C Literals" page by Jordan Rose · 12 years ago
  88. a910f47 [cindex.py] Make CompileCommand.arguments usage consistent with CompileCommand.directory and the rest of the python binding by Arnaud A. de Grandmaison · 12 years ago
  89. 52bcb21 Revert 159966 since Tanya temporarily updated the test case. by Chad Rosier · 12 years ago
  90. 002bb8f TEMPORARY. I will fix this properly shortly. by Tanya Lattner · 12 years ago
  91. d521b70 Put new warning in r159965 under a flag to appease buildbots. Someone please by Chad Rosier · 12 years ago
  92. 0df579e Patch by Anton Lokhmotov to add OpenCL work group size attributes. by Tanya Lattner · 12 years ago
  93. a99ec10 Comment lexing: fix lexing to actually work in non-error cases. by Dmitri Gribenko · 12 years ago
  94. 34f60a4 The delete argument should not be converted to void*. by Abramo Bagnara · 12 years ago
  95. 6749ae1 objective-c: provide fixit hint for @autoreleasepool by Fariborz Jahanian · 12 years ago
  96. 5047024 Silence unused variable warning in -Asserts build by Matt Beaumont-Gay · 12 years ago
  97. f794705 Tests: check for target availability for target-specific tests. by Jim Grosbach · 12 years ago
  98. d57aa88 objective-c: yank any use of "non-fragile abi" phrase by Fariborz Jahanian · 12 years ago
  99. 6467c9b 80-column and whitespace. by Chad Rosier · 12 years ago
  100. 94f29f4 Better parser recovery in Objective-C containers. by Jordan Rose · 12 years ago