- 2be4607 Misc fixes for atomics. Biggest fix is doing alignment correctly for _Atomic types. by Eli Friedman · 13 years ago
- 41be673 -Wc++98-compat: warn on C++11 attributes and alignas. by Richard Smith · 13 years ago
- 84ef899 Test for r141985. by Richard Smith · 13 years ago
- b8e778d Don't try to diagnose anything when we're passing incomplete types by Douglas Gregor · 13 years ago
- fe6f648 [temp.explicit]p1: constexpr cannot be specified in explicit instantiations. by Richard Smith · 13 years ago
- 663b26a Harden test for windows paths. by Benjamin Kramer · 13 years ago
- d5951cb Add flags for the remaining shift related warnings by Joerg Sonnenberger · 13 years ago
- a1de8cb objc-arc: Improve arc diagnostic when method is not by Fariborz Jahanian · 13 years ago
- cb1c9c3 Under ARC, merge the bit corresponding to the ns_returns_retained by Douglas Gregor · 13 years ago
- 9ce6377 Only warn in -Wliteral-conversion if the conversion loses information by Matt Beaumont-Gay · 13 years ago
- 2060650 When declaring an out-of-line template, attempt to rebuild any types by Douglas Gregor · 13 years ago
- 6164ea1 Added clang_getCompletionAnnotation and clang_getCompletionNumAnnotations to by Erik Verbruggen · 13 years ago
- 3a919e7 Really protect from infinite loop when there are objc method redeclarations. by Argyrios Kyrtzidis · 13 years ago
- b40034c Keep track of objc method redeclarations in the same interface. by Argyrios Kyrtzidis · 13 years ago
- 905c45f Use Triple.isOSDarwin() instead of comparing against Triple::Darwin. by Bob Wilson · 13 years ago
- 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
- 78f0ea7 Add support for -std=gnu90 and -std=c++03, for compatibility with modern gcc. by Richard Smith · 13 years ago
- f38eaa4 Revert the -Wc++98-compat flag because dgregor doesn't like it. by Jeffrey Yasskin · 13 years ago
- 5fa065b objc-arc: 'Class' property is implicitly __unsafe_unretained. // rdar://10239594 by Fariborz Jahanian · 13 years ago
- 133ca80 Fix a test case where FileCheck is used to test code corrected by -fixit. by Richard Trieu · 13 years ago
- 9469678 Convert newly-added test from -std=c++0x to -std=c++11. by Richard Smith · 13 years ago
- cda5782 Extend -Wno-sizeof-array-argument to strncpy and friends. by Nico Weber · 13 years ago
- 762bb9d Update all tests other than Driver/std.cpp to use -std=c++11 rather than by Richard Smith · 13 years ago
- 48a9d18 Implement the first piece of a -Wc++98-compat flag so that people can build in by Jeffrey Yasskin · 13 years ago
- 73fb350 Recommit: by Eric Christopher · 13 years ago
- 0b1b5b8 Add test for new -std=c++11 and -std=gnu++11 command-line arguments. by Richard Smith · 13 years ago
- 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
- ee697e6 Allow calling an overloaded function set by taking the address of the by Douglas Gregor · 13 years ago
- 5f1c822 Allow for annotate attributes after access specifiers. When such by Erik Verbruggen · 13 years ago
- 13f8daf Fix crash-on-invalid, improve error recovery, and test coverage for missing colon after access specifiers in C++ by David Blaikie · 13 years ago
- 5fad9b8 When we determine that a function template specialization produced as by Douglas Gregor · 13 years ago
- 183a8de Add test case for __has_warning. by Ted Kremenek · 13 years ago
- 18c407f Change __extension__ to disable only diagnostics controlled by -pedantic. by Bob Wilson · 13 years ago
- 6700415 Add returns_twice to functions that are known to return twice. This implements by Rafael Espindola · 13 years ago
- b3df138 Switch diagnostic text from "C++0x" over to "C++11". by Douglas Gregor · 13 years ago
- 4671730 We do parse hexfloats in C++11; make it actually work. by Douglas Gregor · 13 years ago
- 28e0635 Revert file/scope handling patches. gdb testing revealed a couple of bugs. by Eric Christopher · 13 years ago
- d596c4d The Objective-C rewriter uses the fragile ABI, always. by Douglas Gregor · 13 years ago
- 209dfbe Handle the case where preprocessor entities are not received in order, by Argyrios Kyrtzidis · 13 years ago
- 4a8dfb5 Introduce BalancedDelimiterTracker, to better track open/close by Douglas Gregor · 13 years ago
- d41679d Teach __has_nothrow_assign not to complain about access (GCC and EDG by Douglas Gregor · 13 years ago
- 5fa6a04 constexpr: don't consider class types with mutable members to be literal types. by Richard Smith · 13 years ago
- d5e1d60 Handle Perforce-style conflict markers like normal conflict markers. Perforce by Richard Smith · 13 years ago
- 13546a8 objc: note location of the previously declared property in the diagnostic. by Fariborz Jahanian · 13 years ago
- 6dbba4f Catch placeholder types in DefaultLvalueConversion by John McCall · 13 years ago
- 4b2d549 Start handling debug line and scope information better: by Eric Christopher · 13 years ago
- 8a1d6a5 PR11062: Make C99 inlining work properly for names with associated builtin libcalls. by Eli Friedman · 13 years ago
- 0c91cce Fix test: don't use __thread without a target triple. by Richard Smith · 13 years ago
- 98d86b9 Add a -Wc++0x-compat warning for C++11 keywords used as identifiers when in by Richard Smith · 13 years ago
- 92d6d40 Driver: Add support for a new -nostdlibinc option. by Daniel Dunbar · 13 years ago
- a268fc0 Frontend: Replace -nostdinc by -nostdsysteminc (which is just system include by Daniel Dunbar · 13 years ago
- e1677d9 Add more testing for -Wc++0x-compat warnings. by Richard Smith · 13 years ago
- 257e17f Add an explanatory comment to test/SemaCXX/typo-correction.cpp by Kaelyn Uhrain · 13 years ago
- 769bb2d Get rid of ShouldDeleteMoveConstructor. by Sean Hunt · 13 years ago
- c32d684 Consolidate copy constructor deletion into ShouldDeleteSpecialMember. by Sean Hunt · 13 years ago
- a7957ff [analyzer] Warn about the use of insecure, deprecated vfork() function PR11053 (http://llvm.org/bugs/show_bug.cgi?id=11053). by Anna Zaks · 13 years ago
- 276b061 Initial implementation of __atomic_* (everything except __atomic_is_lock_free). by Eli Friedman · 13 years ago
- f11dbe9 [Microsoft] If -fms-compatibility, then downgrade missing typename error to warning at function prototype scope. by Francois Pichet · 13 years ago
- 71c7efa Added natural stack alignment to target-data.c test case. by Lang Hames · 13 years ago
- fac9467 Add typo correction for type names. by Kaelyn Uhrain · 13 years ago
- e1e7862 Place diagnostic group ext_typecheck_decl_incomplete_type under a -W flag. by Ted Kremenek · 13 years ago
- 2afd766 Only accept a typo correction if it doesn't trigger additional errors by Kaelyn Uhrain · 13 years ago
- db92422 Extend lvalue evaluation in ExprConstant.cpp to handle CK_LValueBitCast (which is completely trivial). PR8836. by Eli Friedman · 13 years ago
- b008012 Don't crash in Sema::IsSimplyAccessible if the declaration is not a C++ class member. Fixes PR11108. by Douglas Gregor · 13 years ago
- 13e1bca When performing a user-defined conversion via a constructor, be sure by Douglas Gregor · 13 years ago
- 46eaf77 [analyzer] Teach the static analyzer about CXXForRangeStmt. Patch by Jim Goodnow II! by Ted Kremenek · 13 years ago
- 9d1bbea objc: err on a property designated both atomic and nonatomic. // rdar://10260017 by Fariborz Jahanian · 13 years ago
- 089e893 When substituting into a sizeof parameter pack expression in a context by Douglas Gregor · 13 years ago
- fcdd2cb Don't suggest 'noreturn' for function template instantiations, because by Douglas Gregor · 13 years ago
- 1055393 Give nicer note when a member redeclaration has or lacks 'const' by Kaelyn Uhrain · 13 years ago
- f8b6e15 Don't analyze comparisons in type- or value-dependent by Douglas Gregor · 13 years ago
- d61db33 Per C++ [class.bit]p2, unnamed bit-fields are not members. Fixes PR10289. by Douglas Gregor · 13 years ago
- 6e43375 constexpr: Disable checking of constructor member initializer lists for by Richard Smith · 13 years ago
- 5a706dc Don't complain about qualified property or ivar access when the by Douglas Gregor · 13 years ago
- d24c306 When adding a direct initializer to a declaration, allow the by Douglas Gregor · 13 years ago
- 147545d Parse the initializer for a class member after handling its by Douglas Gregor · 13 years ago
- 25aaff9 Always add the built-in overload candidates for operators &&, ||, and by Douglas Gregor · 13 years ago
- e16da07 Begin work consolidating ShouldDelete* functions. by Sean Hunt · 13 years ago
- 883af83 Implement the restrictions in C++ [class.friend]p6, which disallow by Douglas Gregor · 13 years ago
- b5ae92f Diagnose attempts to qualify the name of an instance variable or by Douglas Gregor · 13 years ago
- 6d0468b Push "out-of-line" declarations into scope when their lexical/semantic by Douglas Gregor · 13 years ago
- ac57f0b The effective context of a friend function is its lexical context. Fixes PR9103. by Douglas Gregor · 13 years ago
- 6c73a29 For the various CF and NS attributes, don't complain if the parameter by Douglas Gregor · 13 years ago
- d8f5b33 Per the note in C++0x [temp.deduct.call]p4, don't attempt template by Douglas Gregor · 13 years ago
- 33ab0da A friend template specialization is also dependent if any of its by Douglas Gregor · 13 years ago
- 44efed0 Only allow taking the address of an expression of type 'overloaded by Douglas Gregor · 13 years ago
- b5a0187 Diagnose attempts to declare a non-static data member with a by Douglas Gregor · 13 years ago
- 5c340e8 After instantiating a 'noexcept' expression, be sure to convert it to by Douglas Gregor · 13 years ago
- 1b46d8d objc: Do not warn about mismatch on Super's readonly property attribute, by Fariborz Jahanian · 13 years ago
- 8ed7bec Try fixing windows bots. by Argyrios Kyrtzidis · 13 years ago
- 2289717 [arcmt] Ignore linking errors when doing ARC migration, rdar://10247606 by Argyrios Kyrtzidis · 13 years ago
- 744f1cd Provide basic static analyzer support for CXXTemporaryObjectExpr. Patch by Jim Goodnow II. by Ted Kremenek · 13 years ago
- 13bf633 objc++: some minor cleanup and a test case by Fariborz Jahanian · 13 years ago
- dbc68bd Add a simple PCH test for _Atomic. by Eli Friedman · 13 years ago
- 682eae2 Hack in a workaround for PR11082 until we have a proper fix. This by Chandler Carruth · 13 years ago
- 856ebfb Remove FIXME obsoleted by change r141279 for PR11067. by Richard Smith · 13 years ago
- 6595935 Record layout requires not just a definition, but a complete by John McCall · 13 years ago
- aa2176b r141345 also fixed a -Wuninitialized bug where loop conditions were not always flagged as being uninitialized. Addresses <rdar://problem/9432305>. by Ted Kremenek · 13 years ago
- c5f740e Fix infinite loop in -Wuninitialized reported in PR 11069. by Ted Kremenek · 13 years ago
- 7d65f69 objc: Improve on diagnostic when atomic proeprty is synthesized by Fariborz Jahanian · 13 years ago