- 9faf810 I added a new function to DeclContext called by Sean Callanan · 13 years ago
- 7c4fd91 Take DW_AT_comp_dir from $PWD when it's present and starts with a '/'. This is by Nick Lewycky · 13 years ago
- 0e9e981 Add -Wc++98-compat diagnostics for jumps which bypass initialization of non-POD by Richard Smith · 13 years ago
- ef47d27 When fixing up the storage class for an anonymous union, don't mark by Douglas Gregor · 13 years ago
- beedc5f Add test case for analyzer crash reported in <rdar://problem/10308201> (which is already fixed in mainline). by Ted Kremenek · 13 years ago
- 9324583 'extern template' is a C++11 feature. Add an Extension for C++98 (this matches by Richard Smith · 13 years ago
- cb8f951 There's no point in marking a declaration invalid just because it by Douglas Gregor · 13 years ago
- f89bc05 [libclang] Don't use C++-style comments in c-index-test.c. by Argyrios Kyrtzidis · 13 years ago
- 8e0c118 Diagnose class template (partial) specializations that occur in the by Douglas Gregor · 13 years ago
- ba4ee9a When we parse something that looks like a templated friend tag but by Douglas Gregor · 13 years ago
- afdc21a Further refine the diagnostic categories for ARC diagnostics. Addresses <rdar://problem/10245086>. by Ted Kremenek · 13 years ago
- 95aafb2 Add -Wc++98-compat warning for enumerations in nested name specifiers. by Richard Smith · 13 years ago
- 82c8ca1 FixIt insert 'static' for anonymous unions at global or namespace scope. by David Blaikie · 13 years ago
- f6f876c Add a fixit to remove storage specifiers on anonymous enums. by David Blaikie · 13 years ago
- 70042f5 Fix all 80 col violations in include/clang/Basic, plus any trailing whitespace in the files I'm touching anyway. by David Blaikie · 13 years ago
- 98e13ea Make the -verify bits in this test actually test something, and fix a few cases by Richard Smith · 13 years ago
- 85037d9 Define __STDC__ in -fms-extensions mode; defining it is consistent with gcc, and not defining it causes the system headers on multiple platforms to break with -fms-extensions because they assume the lack of a definition of __STDC__ implies a traditional (pre-ANSI) preprocessor. PR10324 and <rdar://problem/10313809> . by Eli Friedman · 13 years ago
- d662a79 80 cols (one I created in my last commit, plus a bunch of others that were already there) by David Blaikie · 13 years ago
- 2b79c32 Don't provide errors for anonymous unions when they're actually anonymous classes. by David Blaikie · 13 years ago
- 0706df4 Improve the diagnostic when a comma ends up at the end of a declarator group by Richard Smith · 13 years ago
- e7d7c39 -Wc++98-compat: warn on nontrivial types used in unions and anonymous structs. by Richard Smith · 13 years ago
- 0d38181 Only warn at self-initialization if some later use is always uninitialized. by Matt Beaumont-Gay · 13 years ago
- 83da2e7 -Wc++98-compat: diagnose if a reference is bound to a prvalue which does not by Richard Smith · 13 years ago
- 18c9bd3 Fix the signatures of vfork, __sigsetjmp and sigsetjmp. by Rafael Espindola · 13 years ago
- 68db6f0 Break out ssize_t test from Sema/format-strings-fixit.c by Hans Wennborg · 13 years ago
- 43f5103 Improve the warning for cv-qualifiers on free functions, from Ahmed Charles! by Douglas Gregor · 13 years ago
- 13102ff Add support for constant arrays, from Anders Waldenborg!. by Douglas Gregor · 13 years ago
- 38d2d55 Add TypeKind.CONSTANTARRAY, from Anders Waldenborg! by Douglas Gregor · 13 years ago
- 9d342ab Fix error message for unknown type kind, from Anders Waldenborg! by Douglas Gregor · 13 years ago
- 2abfec3 This new field was introduced in clang-c in r141277 by Douglas Gregor · 13 years ago
- 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
- 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
- 7c81c2a Don't forget to complete the objc interface before asking for information, by Argyrios Kyrtzidis · 13 years ago
- 53e5351 Add a -Wc++98-compat warning for friend functions of class templates which would by Richard Smith · 13 years ago
- b9c8c42 Add block information for ObjC @catch blocks. by Eric Christopher · 13 years ago
- c328779 Add a new subclass of RunCleanupScopes that also handles creating new by Eric Christopher · 13 years ago
- 013e5ce Move static array parameter checks to SemaExpr, per Doug's request by Peter Collingbourne · 13 years ago
- 77faa36 -Wc++98-compat: warn if a SFINAE substitution in C++11 suppresses an access by Richard Smith · 13 years ago
- b224343 objc: allow class name qualified with protocols in by Fariborz Jahanian · 13 years ago
- c9003c8 [analyzer] Move predecessor into the NodeBuilder context. by Anna Zaks · 13 years ago
- 4e82d3c [analyzer] Make NodeBuilder and Pred node loosely coupled by Anna Zaks · 13 years ago
- 3152b3c [analyzer] Remove StmtNodeBuilder from CheckerContext by Anna Zaks · 13 years ago
- 319a918 [analyzer] Subclassing StmtBuilder from the NodeBuilder by Anna Zaks · 13 years ago
- 67d9fba [analyzer] Remove dead code. ExprEngineBuilders is not used. by Anna Zaks · 13 years ago
- 9a1e3ab [analyzer] Remove redundant method + whitespace. by Anna Zaks · 13 years ago
- cd656ca [analyzer] Modularize builder use in processBranch. by Anna Zaks · 13 years ago
- ad62dee [analyzer] Pull Pred out of NodeBuilderContext. by Anna Zaks · 13 years ago
- 8c90aad [analyzer] Rely only on NodeBuilder inside CheckerContext. by Anna Zaks · 13 years ago
- d0b0806 [analyzer] Remove redundant assignment operator. by Anna Zaks · 13 years ago
- a19f4af [analyzer] NodeBuilder Refactoring: Subclass BranchNodeBuilder from NodeBuilder. by Anna Zaks · 13 years ago
- f05aac8 [analyzer] Node Builder refactoring: Introduce a simple Node Builder responsible for generating the node frontier. by Anna Zaks · 13 years ago
- 2dde35b More metaprogramming with builtin types. by John McCall · 13 years ago
- c705d25 [libclang] Make sure we do a correct invalid check in clang_getExpansionLocation. by Argyrios Kyrtzidis · 13 years ago
- fa43c97 Minor tweak to test by Douglas Gregor · 13 years ago
- 6b13022 -Wc++98-compat and -Wc++98-compat-pedantic warnings for Sema, part 2. by Richard Smith · 13 years ago
- 097f6b0 Remove unused data member by Douglas Gregor · 13 years ago
- 8ca7208 Provide result types for code completions that describe built-in by Douglas Gregor · 13 years ago
- eb2ac8b Add a __has_feature check for arc_cf_code_audited. by John McCall · 13 years ago
- e0a22d0 Macro metaprogramming for builtin types. by John McCall · 13 years ago
- ebaf0e6 -Wc++98-compat and -Wc++98-compat-pedantic warnings for Sema, part 1. by Richard Smith · 13 years ago
- 024f4be Frontend: Support -iframework. by Daniel Dunbar · 13 years ago
- dd67723 Simplify RecordDeclCXX::setBases slightly. No functional change. by Richard Smith · 13 years ago
- f4072ae objc: more changes in use of IBOutletCollection attribute. by Fariborz Jahanian · 13 years ago
- 4467901 [arcmt] Rewrite attributes in extensions as well. rdar://9992142 by Argyrios Kyrtzidis · 13 years ago
- b98ffde Set the objc "property attributes as written" for extension properties as well. by Argyrios Kyrtzidis · 13 years ago
- f106f0e In C++11, a class's members are allowed to be nominated as friends. by Richard Smith · 13 years ago
- c19981c [driver] Make the driver to link the simulator arclite lib when passing -mios-simulator-version-min. by Argyrios Kyrtzidis · 13 years ago
- 7a81e41 objc: diagnose invalid argument to an by Fariborz Jahanian · 13 years ago
- 46d1ea4 [libclang] Since an objc extension semantically continues the interface of the class by Argyrios Kyrtzidis · 13 years ago
- 341350e Make it possible to compute the type of 'this' without capturing by Douglas Gregor · 13 years ago
- a50216c Add code completions for C++0x expressions by Douglas Gregor · 13 years ago
- aca19be [libclang] Index implicit property references. by Argyrios Kyrtzidis · 13 years ago
- c0f5b75 [libclang] When printing the diagnostic print it with a new line. by Argyrios Kyrtzidis · 13 years ago
- 9fbbf14 [libclang] Index method references. by Argyrios Kyrtzidis · 13 years ago
- 474202f Use llvm::Triple's methods to parse FreeBSD version numbers. by Benjamin Kramer · 13 years ago
- 36e7608 Another attempt at fixing format-strings-fixit.c. by Hans Wennborg · 13 years ago
- 4886e32 Disable the ssize_t test in format-strings-fixit.c. by Hans Wennborg · 13 years ago
- a7da215 Suggest %zu for size_t args to printf. by Hans Wennborg · 13 years ago
- 5f31f08 Switch to the C++11 warning flags in tests. Patch by Ahmed Charles! by David Blaikie · 13 years ago
- 5090e9f Update documentation to use "C++11" instead of "C++0x" by David Blaikie · 13 years ago
- ee1c68a Don't format the code completion for parameters of block literal by Douglas Gregor · 13 years ago
- 2dc7ece Add -Wc++11-compat warning for an inline specifier on an explicit instantiation. by Richard Smith · 13 years ago
- 4e8ea0b When transforming the arguments for a C++ "new" expression, make sure by Douglas Gregor · 13 years ago
- 3e2e91e Refactor the checking for explicit template instantiations being performed in by Richard Smith · 13 years ago
- d80d90d Argyrios says this change is required for safety under PTH. Me, I believe him. by John McCall · 13 years ago
- 66f2846 Revert accidental commit. by Eli Friedman · 13 years ago
- 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
- 3eff321 Fix several bugs with #pragma clang arc_cf_code_audited and macros. by John McCall · 13 years ago
- dceb11f Revert r142311, -mios-simulator-version-min does not work correctly. by Argyrios Kyrtzidis · 13 years ago
- 85def35 In hasPlaceholderType(Kind) and isSpecificPlaceholderType(Kind), assert by John McCall · 13 years ago
- b56e6ad Remove the hack where we sniff the __IPHONE_OS_VERSION_MIN_REQUIRED define. by Argyrios Kyrtzidis · 13 years ago
- ea01143 Perform lvalue-to-rvalue conversions on __builtin_offsetof array argument index by Richard Smith · 13 years ago
- 01b2b9b [arcmt] In ARC default for properties is 'strong' so just remove a 'retain' if possible, by Argyrios Kyrtzidis · 13 years ago
- 841804b Add -Wc++98-compat warnings for uses of the new keywords 'alignof', 'char16_t', by Richard Smith · 13 years ago
- ea523d7 Wire up support for the controlling the extended dwarf .file directive. With by Nick Lewycky · 13 years ago
- 3de2fc4 Silence a -Wc++0x-narrowing warning by Matt Beaumont-Gay · 13 years ago
- 19706f8 Implement -static-libstdc++ for linux. by Rafael Espindola · 13 years ago
- 36180f3 Try fixing MSVC compiler errors. by Argyrios Kyrtzidis · 13 years ago
- 7f20c7c Add missing newline. by Eli Friedman · 13 years ago
- 66d5ce1 Move about 20 random diagnostics under -W flags. Patch by Ahmed Charles! by Ted Kremenek · 13 years ago