1. 8e0c118 Diagnose class template (partial) specializations that occur in the by Douglas Gregor · 13 years ago
  2. ba4ee9a When we parse something that looks like a templated friend tag but by Douglas Gregor · 13 years ago
  3. afdc21a Further refine the diagnostic categories for ARC diagnostics. Addresses <rdar://problem/10245086>. by Ted Kremenek · 13 years ago
  4. 95aafb2 Add -Wc++98-compat warning for enumerations in nested name specifiers. by Richard Smith · 13 years ago
  5. 98e13ea Make the -verify bits in this test actually test something, and fix a few cases by Richard Smith · 13 years ago
  6. 2b79c32 Don't provide errors for anonymous unions when they're actually anonymous classes. by David Blaikie · 13 years ago
  7. 0706df4 Improve the diagnostic when a comma ends up at the end of a declarator group by Richard Smith · 13 years ago
  8. e7d7c39 -Wc++98-compat: warn on nontrivial types used in unions and anonymous structs. by Richard Smith · 13 years ago
  9. 0d38181 Only warn at self-initialization if some later use is always uninitialized. by Matt Beaumont-Gay · 13 years ago
  10. 83da2e7 -Wc++98-compat: diagnose if a reference is bound to a prvalue which does not by Richard Smith · 13 years ago
  11. 18c9bd3 Fix the signatures of vfork, __sigsetjmp and sigsetjmp. by Rafael Espindola · 13 years ago
  12. 68db6f0 Break out ssize_t test from Sema/format-strings-fixit.c by Hans Wennborg · 13 years ago
  13. 43f5103 Improve the warning for cv-qualifiers on free functions, from Ahmed Charles! by Douglas Gregor · 13 years ago
  14. 1368e58 Fix pr9789, assert-on-invalid while instantiating an (invalid) class template with a non-final parameter pack. Also improve the warning for non-final parameter packs in this scenario so it only fires once, rather than once for every template parameter after the non-final parameter pack. by David Blaikie · 13 years ago
  15. ab795d6 Tweak this test to test more directly what we want, and hopefully work around the brokenness of code completion under -fdelayed-template-parsing by Douglas Gregor · 13 years ago
  16. 53e5351 Add a -Wc++98-compat warning for friend functions of class templates which would by Richard Smith · 13 years ago
  17. b9c8c42 Add block information for ObjC @catch blocks. by Eric Christopher · 13 years ago
  18. 77faa36 -Wc++98-compat: warn if a SFINAE substitution in C++11 suppresses an access by Richard Smith · 13 years ago
  19. b224343 objc: allow class name qualified with protocols in by Fariborz Jahanian · 13 years ago
  20. fa43c97 Minor tweak to test by Douglas Gregor · 13 years ago
  21. 6b13022 -Wc++98-compat and -Wc++98-compat-pedantic warnings for Sema, part 2. by Richard Smith · 13 years ago
  22. 8ca7208 Provide result types for code completions that describe built-in by Douglas Gregor · 13 years ago
  23. eb2ac8b Add a __has_feature check for arc_cf_code_audited. by John McCall · 13 years ago
  24. ebaf0e6 -Wc++98-compat and -Wc++98-compat-pedantic warnings for Sema, part 1. by Richard Smith · 13 years ago
  25. 024f4be Frontend: Support -iframework. by Daniel Dunbar · 13 years ago
  26. dd67723 Simplify RecordDeclCXX::setBases slightly. No functional change. by Richard Smith · 13 years ago
  27. f4072ae objc: more changes in use of IBOutletCollection attribute. by Fariborz Jahanian · 13 years ago
  28. 4467901 [arcmt] Rewrite attributes in extensions as well. rdar://9992142 by Argyrios Kyrtzidis · 13 years ago
  29. f106f0e In C++11, a class's members are allowed to be nominated as friends. by Richard Smith · 13 years ago
  30. 7a81e41 objc: diagnose invalid argument to an by Fariborz Jahanian · 13 years ago
  31. 46d1ea4 [libclang] Since an objc extension semantically continues the interface of the class by Argyrios Kyrtzidis · 13 years ago
  32. a50216c Add code completions for C++0x expressions by Douglas Gregor · 13 years ago
  33. 36e7608 Another attempt at fixing format-strings-fixit.c. by Hans Wennborg · 13 years ago
  34. 4886e32 Disable the ssize_t test in format-strings-fixit.c. by Hans Wennborg · 13 years ago
  35. a7da215 Suggest %zu for size_t args to printf. by Hans Wennborg · 13 years ago
  36. 5f31f08 Switch to the C++11 warning flags in tests. Patch by Ahmed Charles! by David Blaikie · 13 years ago
  37. ee1c68a Don't format the code completion for parameters of block literal by Douglas Gregor · 13 years ago
  38. 2dc7ece Add -Wc++11-compat warning for an inline specifier on an explicit instantiation. by Richard Smith · 13 years ago
  39. 4e8ea0b When transforming the arguments for a C++ "new" expression, make sure by Douglas Gregor · 13 years ago
  40. 3e2e91e Refactor the checking for explicit template instantiations being performed in by Richard Smith · 13 years ago
  41. 97c0aef Rewrite parts of MS ABI C++ layout. Based on work by r4start; I ended up doing this while I was trying to review his patch. by Eli Friedman · 13 years ago
  42. 3eff321 Fix several bugs with #pragma clang arc_cf_code_audited and macros. by John McCall · 13 years ago
  43. dceb11f Revert r142311, -mios-simulator-version-min does not work correctly. by Argyrios Kyrtzidis · 13 years ago
  44. b56e6ad Remove the hack where we sniff the __IPHONE_OS_VERSION_MIN_REQUIRED define. by Argyrios Kyrtzidis · 13 years ago
  45. ea01143 Perform lvalue-to-rvalue conversions on __builtin_offsetof array argument index by Richard Smith · 13 years ago
  46. 01b2b9b [arcmt] In ARC default for properties is 'strong' so just remove a 'retain' if possible, by Argyrios Kyrtzidis · 13 years ago
  47. 841804b Add -Wc++98-compat warnings for uses of the new keywords 'alignof', 'char16_t', by Richard Smith · 13 years ago
  48. 7f20c7c Add missing newline. by Eli Friedman · 13 years ago
  49. 66d5ce1 Move about 20 random diagnostics under -W flags. Patch by Ahmed Charles! by Ted Kremenek · 13 years ago
  50. 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
  51. 8121639 Substitute for arguments in method calls -- functionality by DeLesley Hutchins · 13 years ago
  52. fe0a0fb Refactor __attribute__ parsing, and add a diagnostic if the r_paren at the end by Richard Smith · 13 years ago
  53. 6ec9643 The comparison of two vectors should return a signed result. hasIntegerRepresentation() used to always return false for vectors, but since it was changed, it also by Tanya Lattner · 13 years ago
  54. d125050 obj-c++: Fix a IRGen crash when getter is a reference type. by Fariborz Jahanian · 13 years ago
  55. 88a4cfd Strip qualifiers off the type of an implicit property defined by only a setter. by John McCall · 13 years ago
  56. 5acb0c9 Teach the ARC compiler to not require __bridge casts when by John McCall · 13 years ago
  57. a2b4e5d When we end up having to parse the initializer of a C++ member early by Douglas Gregor · 13 years ago
  58. aa93a87 For modules, all macros that aren't include guards are implicitly by Douglas Gregor · 13 years ago
  59. 05edf66 When building a module, use the macro definitions on the command line by Douglas Gregor · 13 years ago
  60. c35cba4 Fixed merge-mistake where ActOnAccessSpecifier was called twice for every access specifier. The testcase has been changed to catch this too. by Erik Verbruggen · 13 years ago
  61. d82e5d3 Perform an lvalue-to-rvalue conversion on an array index in a __builtin_offsetof expression. by Richard Smith · 13 years ago
  62. 4c3fd51 Add a testcase for r142121 based on an idea from Richard Smith. Thanks! by Chandler Carruth · 13 years ago
  63. 1e12c59 Split apart the state accumulated during constant expression evaluation and the by Richard Smith · 13 years ago
  64. 20cdbeb Add sema checks for calls to functions taking static array parameters by Peter Collingbourne · 13 years ago
  65. 5405b81 Implement overload resolution from init lists for scalar parameter types. by Sebastian Redl · 13 years ago
  66. c223518 Diagnose when omitting braces in direct list-initialization in C++0x. by Sebastian Redl · 13 years ago
  67. d12c9f5 Prove that non-overloaded function calls using init list arguments work. by Sebastian Redl · 13 years ago
  68. e409238 Remove the leftover partial comment. by David Blaikie · 13 years ago
  69. 176d1d7 I fixed this with r142127; these notes now make sense even w/o the caret. by Chandler Carruth · 13 years ago
  70. a47129e Now that macro expansion notes are real notes and go through the same by Chandler Carruth · 13 years ago
  71. 4ba5565 Now that the structure of this is more reasonably laid out, fix a long by Chandler Carruth · 13 years ago
  72. e0376c0 Add a prefix to the existing test to prepare for more tests of other by Chandler Carruth · 13 years ago
  73. 1aaddf2 Fold two run lines into a single logical one, and move them down below by Chandler Carruth · 13 years ago
  74. 2b54d3d Rename this test to a more general name in preparation for adding more by Chandler Carruth · 13 years ago
  75. 43bcdb2 Avoid duplicate unavailbility diagnostics in objc++. // rdar://10268422 by Fariborz Jahanian · 13 years ago
  76. bb13c32 obj-c++: allow the getter/setter to return/take parameters by Fariborz Jahanian · 13 years ago
  77. 0aa86c0 Add -Wc++98-compat warning for deduced 'auto' type specifier. by Richard Smith · 13 years ago
  78. 7fe6208 Implement -Wc++98-compat warnings for the parser. by Richard Smith · 13 years ago
  79. 95fa252 Testcase for half of r142048. by Richard Smith · 13 years ago
  80. d60feeb Use of override keywords in C++98 should produce a warning by default. by Richard Smith · 13 years ago
  81. c8645e3 Handle an edge case involving the conditional operator and throw expressions. PR10582. by Eli Friedman · 13 years ago
  82. 661a996 -Wc++98-compat warnings for the lexer. by Richard Smith · 13 years ago
  83. fd5f686 Add c_alignas and cxx_alignas features by Peter Collingbourne · 13 years ago
  84. 8eb5b29 Missed tests for half FP support by Anton Korobeynikov · 13 years ago
  85. 2be4607 Misc fixes for atomics. Biggest fix is doing alignment correctly for _Atomic types. by Eli Friedman · 13 years ago
  86. 41be673 -Wc++98-compat: warn on C++11 attributes and alignas. by Richard Smith · 13 years ago
  87. 84ef899 Test for r141985. by Richard Smith · 13 years ago
  88. b8e778d Don't try to diagnose anything when we're passing incomplete types by Douglas Gregor · 13 years ago
  89. fe6f648 [temp.explicit]p1: constexpr cannot be specified in explicit instantiations. by Richard Smith · 13 years ago
  90. 663b26a Harden test for windows paths. by Benjamin Kramer · 13 years ago
  91. d5951cb Add flags for the remaining shift related warnings by Joerg Sonnenberger · 13 years ago
  92. a1de8cb objc-arc: Improve arc diagnostic when method is not by Fariborz Jahanian · 13 years ago
  93. cb1c9c3 Under ARC, merge the bit corresponding to the ns_returns_retained by Douglas Gregor · 13 years ago
  94. 9ce6377 Only warn in -Wliteral-conversion if the conversion loses information by Matt Beaumont-Gay · 13 years ago
  95. 2060650 When declaring an out-of-line template, attempt to rebuild any types by Douglas Gregor · 13 years ago
  96. 6164ea1 Added clang_getCompletionAnnotation and clang_getCompletionNumAnnotations to by Erik Verbruggen · 13 years ago
  97. 3a919e7 Really protect from infinite loop when there are objc method redeclarations. by Argyrios Kyrtzidis · 13 years ago
  98. b40034c Keep track of objc method redeclarations in the same interface. by Argyrios Kyrtzidis · 13 years ago
  99. 905c45f Use Triple.isOSDarwin() instead of comparing against Triple::Darwin. by Bob Wilson · 13 years ago
  100. 2ed7cb6 PR11124: Don't overwrite memory outside of a base class when performing zero-initialization before running its constructor. by Eli Friedman · 13 years ago