1. f9e9af7 Add a per target max vector alignment field (e.g., 32-byte alignment for x86 due to by Chad Rosier · 12 years ago
  2. 558e887 PR13360: When deciding the earliest point which inevitably leads to an by Richard Smith · 12 years ago
  3. f195f2c add support for conditional expressions in Expr::HasSideEffects() by Nuno Lopes · 12 years ago
  4. 916ea65 Move a bunch of the attribute warnings under the IgnoreAttributes group. Cleaned up test case. by Tanya Lattner · 12 years ago
  5. 6b60370 Apply visibility pragmas to class template declarations. This is needed because by Rafael Espindola · 12 years ago
  6. b04b731 Use -fvisibility-inlines-hidden in inline functions too. This matches gcc by Rafael Espindola · 12 years ago
  7. 838925d Provide a special-case diagnostic when two class member functions instantiate by Richard Smith · 12 years ago
  8. d3d02dd Fix a bug in my previous commit. The problem is not that we were not using the by Rafael Espindola · 12 years ago
  9. abd56c8 Attaching comments to declarations during parsing: handle more Objective-C declarations. by Dmitri Gribenko · 12 years ago
  10. 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
  11. 3d98698 Make concepts of optional and forbidden end tags separate. Thanks Jordan for pointing this! by Dmitri Gribenko · 12 years ago
  12. 2345820 Use the canonical template decl when trying to find if it has a visibility by Rafael Espindola · 12 years ago
  13. f9aed96 [Windows] Split the back reference tests into two separate files as the templates are getting hairy by Timur Iskhodzhanov · 12 years ago
  14. 6fcac5d test/CodeGen/rdrand-builtins.c: Define __MM_MALLOC_H before including <*mmintrin.h> . by NAKAMURA Takumi · 12 years ago
  15. a1c387e Don't include mm_malloc.h in test, it pulls in system headers on msvc. by Benjamin Kramer · 12 years ago
  16. 8f88a1d [Windows] Use thiscall as the default calling convention for class methods. PR12785 by Timur Iskhodzhanov · 12 years ago
  17. 9a50249 Add _rdrand{16,32,64}_step intrinsics to immintrin.h by Benjamin Kramer · 12 years ago
  18. c7bd9fb Be lax about trailing whitespace when checking fixit formatting, this depends on locale settings. by Benjamin Kramer · 12 years ago
  19. af082c3 PR13312: Don't crash when printing a fixit that ends in a unicode character. by Benjamin Kramer · 12 years ago
  20. 5e06529 Process #pragma visibility early in the parsing of class definitions. Fixes by Rafael Espindola · 12 years ago
  21. f729ce0 Ignore visibility attributes after definitions. This matches newer (4.7) gcc's by Rafael Espindola · 12 years ago
  22. f7226fb Add the ObjFW runtime. Patch by Jonathan Schleifer! by John McCall · 12 years ago
  23. c36b30c [analyzer] Don't inline virtual calls unless we can devirtualize properly. by Jordan Rose · 12 years ago
  24. 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
  25. 8951067 Don't try to do RVO on block variables that refer to an enclosing local. by Nico Weber · 12 years ago
  26. e3f470a Stop instantiating a class if we hit a static_assert failure. Also, if the by Richard Smith · 12 years ago
  27. a5ef44f Enable comment parsing and semantic analysis to emit diagnostics. A few by Dmitri Gribenko · 12 years ago
  28. 4b49756 Start testing some commented-out cases of badly-formed __has_include. by Jordan Rose · 12 years ago
  29. 78541c4 Allow -verify directives to be filtered by preprocessing. by Jordan Rose · 12 years ago
  30. 8d71918 Handle #pragma visibility in explicit specializations and enums. by Rafael Espindola · 12 years ago
  31. 9903e94 Fix handling of curly braces in NVPTX inline asm by Justin Holewinski · 12 years ago
  32. c852e9f Temporarily revert this to see if it brings the gdb bot back. by Eric Christopher · 12 years ago
  33. 0ca4be3 clang/test/Misc/diag-template-diffing-color.cpp: Introduce the feature 'ansi-escape-sequences'. by NAKAMURA Takumi · 12 years ago
  34. f2f15b3 Don't process #pragma visibility during instantiation. The visibility of the by Rafael Espindola · 12 years ago
  35. 3d40f96 The end of a block doesn't necessarily need a line table entry unless by Eric Christopher · 12 years ago
  36. 81e5a93 FileCheck-ize. by Eric Christopher · 12 years ago
  37. 5ef6e94 [analyzer] Guard against C++ member functions that look like system functions. by Jordan Rose · 12 years ago
  38. a4334df Fix crash when constant-evaluating a CXXConstructExpr representing by Richard Smith · 12 years ago
  39. e54cfc7 [analyzer] Use CallEvent for building inlined stack frames. by Jordan Rose · 12 years ago
  40. 1310611 Thread safety analysis: impove handling of trylock expressions. by DeLesley Hutchins · 12 years ago
  41. 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
  42. e265c87 Fixes the MSVC build. by Manuel Klimek · 12 years ago
  43. 8fa2fb8 Adds support for auto-detection of compilation databases by Manuel Klimek · 12 years ago
  44. 002bb8f TEMPORARY. I will fix this properly shortly. by Tanya Lattner · 12 years ago
  45. 0df579e Patch by Anton Lokhmotov to add OpenCL work group size attributes. by Tanya Lattner · 12 years ago
  46. 6749ae1 objective-c: provide fixit hint for @autoreleasepool by Fariborz Jahanian · 12 years ago
  47. f794705 Tests: check for target availability for target-specific tests. by Jim Grosbach · 12 years ago
  48. d57aa88 objective-c: yank any use of "non-fragile abi" phrase by Fariborz Jahanian · 12 years ago
  49. 94f29f4 Better parser recovery in Objective-C containers. by Jordan Rose · 12 years ago
  50. ee158bc [analyzer] When inlining, make sure we use the definition decl. by Jordan Rose · 12 years ago
  51. 6deae7c Downgrade the "direct comparison" error for ObjC literals to a warning. by Jordan Rose · 12 years ago
  52. 6098381 PR13136: by Richard Smith · 12 years ago
  53. 6ff6cfe Halve template depth in an attempt to get this test passing on mingw32. by Richard Smith · 12 years ago
  54. fff457f test/SemaTemplate/instantiation-depth-defarg.cpp: Mark as XFAIL:mingw for now. by NAKAMURA Takumi · 12 years ago
  55. fad0a32 MIPS: Range check __builtin_mips_wrdsp / __builtin_mips_rddsp arguments against the upper/lower values. by Simon Atanasyan · 12 years ago
  56. e471d87 MIPS: Mark arguments of __builtin_mips_wrdsp / __builtin_mips_rddsp as a constant expression. by Simon Atanasyan · 12 years ago
  57. 5a343d7 PR13243: When deducing a non-type template parameter which is specified as an by Richard Smith · 12 years ago
  58. 8ad6c86 PR13293: Defer deduction of an auto type with a dependent declarator, such as "auto (*f)(T t)". by Richard Smith · 12 years ago
  59. ab91ef1 PR9793: Treat substitution as an instantiation step for the purpose of the by Richard Smith · 12 years ago
  60. bb35151 Reject 'int a[1][];' in Sema rather than crashing in IR generation. Found by a by Richard Smith · 12 years ago
  61. de31aa7 PR13290: Constant-evaluation support for CXXConstructExprs which construct a by Richard Smith · 12 years ago
  62. 254a8fb clang/test/CodeGenCXX/cxx0x-initializer-constructors.cpp: Fixup for -Asserts. by NAKAMURA Takumi · 12 years ago
  63. 84f3080 Wire up -mrdrnd for X86. by Benjamin Kramer · 12 years ago
  64. 2059939 PR12670: Support for initializing an array of non-aggregate class type from an by Richard Smith · 12 years ago
  65. ff817f7 When marking virtual functions as used for a class' vtable, mark all functions by Richard Smith · 12 years ago
  66. a437b84 Enhance 'diagtool list-warnings' to report number of diagnostics covered directly under -Wpedantic, and enhance warning-flags.c test to test that this set does not grow. by Ted Kremenek · 12 years ago
  67. e8cf7d1 Re-apply r159875 with fixes. by Ted Kremenek · 12 years ago
  68. 3b4c532 Revert rr159875, "Implement -Wpedantic and --no-pedantic to complement -Weverything." It broke several builds. by NAKAMURA Takumi · 12 years ago
  69. 9c00676 Restrict the set of declaration kinds for which we allow trailing comments. by Dmitri Gribenko · 12 years ago
  70. 25570a9 Implement -Wpedantic and --no-pedantic to complement -Weverything. by Ted Kremenek · 12 years ago
  71. 48088ed [analyzer] Fix mis-committed test. No functionality change. by Jordan Rose · 12 years ago
  72. 752bee2 [analyzer] Be careful about LazyCompoundVals, which may be for the first field. by Jordan Rose · 12 years ago
  73. bd2e27e objc-arc: warn when assigning retained object to by Fariborz Jahanian · 12 years ago
  74. 4d3db4e objective-c++11: extend c++11 range-based loop to iterate by Fariborz Jahanian · 12 years ago
  75. 102bab7 clang/test/CodeGen/fp-contract.c: It requires ppc32! by NAKAMURA Takumi · 12 years ago
  76. c968671 Add -ffp-contract = { fast | on | off } command line option support. by Lang Hames · 12 years ago
  77. 1838703 [objcmt] Check for classes that accept 'objectForKey:' (or the other selectors by Argyrios Kyrtzidis · 12 years ago
  78. c4133a4 objective-c: don't involve properties when checking by Fariborz Jahanian · 12 years ago
  79. c2abbe0 [objcmt] Allow migrating to subscripting syntax for other classes by Argyrios Kyrtzidis · 12 years ago
  80. 5381c05 Thread-safety analysis: eliminate false positives in case where the definition by DeLesley Hutchins · 12 years ago
  81. a1b6227 MIPS: Define __mips_dsp_rev / __mips_dspr2 / __mips_dsp macros by Simon Atanasyan · 12 years ago
  82. 39700f8 objective-c++ parsing. Turn off delayed parsing by Fariborz Jahanian · 12 years ago
  83. d797a85 MIPS: Add -mdsp/-mno-dsp and -mdspr2/-mno-dspr2 command line options support. by Simon Atanasyan · 12 years ago
  84. 1176bcd MIPS: Define __mips16 macro if -mips16 option is provided. by Simon Atanasyan · 12 years ago
  85. 0b273ef MIPS: Add -mips16 / -mno-mips16 command line support. by Simon Atanasyan · 12 years ago
  86. 125aa1f Give test check tags consistent names. by Simon Atanasyan · 12 years ago
  87. f4bb8d0 PR13273: When performing list-initialization with an empty initializer list, by Richard Smith · 12 years ago
  88. b0ed95c Obj-C++11 parser: handle a fall out of delayed by Fariborz Jahanian · 12 years ago
  89. fdaa338 [analyzer] For now, don't inline non-static member overloaded operators. by Jordan Rose · 12 years ago
  90. 3b5f9dc Obj-C++11 parser: fix broken parsing of c-function by Fariborz Jahanian · 12 years ago
  91. a1eec4b objective-c: Refactor parse/sema portion of by Fariborz Jahanian · 12 years ago
  92. 11d3f4c Rename the GCC Objective-C runtime to gcc from gnu-fragile and the GNUstep by David Chisnall · 12 years ago
  93. 1fc6e4f When using -pg targeting OS X 10.8, pass -no_new_main to the linker. by Bob Wilson · 12 years ago
  94. 96fac6a Thread safety analysis: improve handling of smart pointers. by DeLesley Hutchins · 12 years ago
  95. c359f20 Make the following changes in the way Mips handles vector arguments and return by Akira Hatanaka · 12 years ago
  96. 9d6e7f3 Thread Safety Analysis: handle expressions involving temporaries, by DeLesley Hutchins · 12 years ago
  97. 39d5fa1 Add additional architecture defines for PPC targets. by Hal Finkel · 12 years ago
  98. 7c81b43 Rename -Wself-assign-memvar to -Wself-assign-field to improve local consistency a bit. by Nico Weber · 12 years ago
  99. e0c1168 Significantly simplify CGExprAgg's logic about ignored results: by John McCall · 12 years ago
  100. f39a7ae [libclang] Introduce clang_Cursor_isDynamicCall which, by Argyrios Kyrtzidis · 12 years ago