- ad9689f Added two missing const qualifiers. by Abramo Bagnara · 13 years ago
- 268efba CXXThisScopeRAII objects aren't free, don't compute one if it's unused. by Benjamin Kramer · 13 years ago
- abf145a Use the argument location instead of the format string location when warning by Matt Beaumont-Gay · 13 years ago
- 5641b0d [libclang/AST] When declaring a local class, don't neglect to set the end location by Argyrios Kyrtzidis · 13 years ago
- 1893731 [driver] Remove obsolete support for -A link option. The standard -A option is by Chad Rosier · 13 years ago
- 25582fc Recover better from a missing 'typename' in a function template definition. by Richard Smith · 13 years ago
- d9f07d4 Remove unnecessary temporary. by Eric Christopher · 13 years ago
- 005af27 Rename the driver option to -mno-implicit-float, per Eli's suggestion. by Chad Rosier · 13 years ago
- 832a2aa Pulls diagnostics for temp file handling into the common diagnostic kinds. by Manuel Klimek · 13 years ago
- ee9ad5c [driver] Allow the driver to directly accept the -no-implicit-float option, so that the by Chad Rosier · 13 years ago
- 6a1fd4a Tweek r156937 a bit so that the suggestions are correct. by Chad Rosier · 13 years ago
- ff1affe Warn about -Wno-foo where foo is an unknown warning option. This is helpful by Chad Rosier · 13 years ago
- 4b0e6f1 Move the warnings for extra semi-colons under -Wextra-semi. Also, added by Richard Trieu · 13 years ago
- d57f52c Clean up r156925, so that we only mark the capturing DeclRefExpr of a by Douglas Gregor · 13 years ago
- 29a93f8 Fix code generation of variables reference expressions when mixing by Douglas Gregor · 13 years ago
- d0792de Fix ASTReader handling of ImportDecls, from Meador Inge! by Douglas Gregor · 13 years ago
- 50de5e3 Use a llvm::SmallString rather than std::string for duplicate-case errors by Douglas Gregor · 13 years ago
- 93a9d82 [analyzer] Introduce clang_analyzer_eval for regression test constraint checks. by Jordy Rose · 13 years ago
- c51bb99 StringSwitchify. No functionality change. by Benjamin Kramer · 13 years ago
- bc3260d Factor sema for attributes unavailable and deprecated into a common function. by Benjamin Kramer · 13 years ago
- f7efb0e [tsan] add ThreadSanitizer linker flags on Linux and also copy the tsan-rt into the appropriate place at build time by Kostya Serebryany · 13 years ago
- 3940ce8 Produce more useful 'duplicate case' diagnostics. Fixes PR9243, from Terry Long! by Douglas Gregor · 13 years ago
- def0762 Include the correct conversion context locations for condition expressions. by David Blaikie · 13 years ago
- 797105a Fix the visibility of instantiations of static data members. Fixes pr12835. by Rafael Espindola · 13 years ago
- 7d24e28 [libclang/AST] Index references of protocols in "@protocol(...)" syntax. by Argyrios Kyrtzidis · 13 years ago
- 0773659 [objcmt] Accept char arrays for rewriting to @() syntax. by Argyrios Kyrtzidis · 13 years ago
- c5d33e9 [objcmt] When using NSNumber numberWithInteger:/numberWithUnsignedInteger: be by Argyrios Kyrtzidis · 13 years ago
- 9abf88c objective-c: perform strict type checking on property by Fariborz Jahanian · 13 years ago
- 5ec351c [analyzer] Fix a regression in ObjCUnusedIVars checker. by Anna Zaks · 13 years ago
- 7fe103c [objcmt] Rewrite messages to NSString's stringWithUTF8String:/stringWithCString: by Argyrios Kyrtzidis · 13 years ago
- 9fb1ac5 Don't warn when NULL is used within a macro but its conversion is outside a macro. by David Blaikie · 13 years ago
- 7514db2 Typo. by Richard Smith · 13 years ago
- 8f0a7e7 If we see a declaration which is either missing a type or has a malformed type, by Richard Smith · 13 years ago
- 827adaf Don't use the implicit int rule for error recovery in C++. Instead, try to by Richard Smith · 13 years ago
- 04e326b Add the Objective-C runtime linking arguments after user-specified by Douglas Gregor · 13 years ago
- 0d578a6 [objcmt] Rewrite [NSNumber numberWith*] messages to the new @() boxing syntax. by Argyrios Kyrtzidis · 13 years ago
- f5343ff Allow objc @() syntax for enum types. by Argyrios Kyrtzidis · 13 years ago
- 63d9f3c Do not link with Objective-C libraries with -nostdlib or -nodefaultlibs. by Bob Wilson · 13 years ago
- 7441471 objc: avoid duplicate diagnostics on certain type mismatches by Fariborz Jahanian · 13 years ago
- dc3eb6a Remove word 'block' from option and diagnostic I added in r156825. by Fariborz Jahanian · 13 years ago
- de7e7b8 Changing std::string to SmallString for r156826. by David Blaikie · 13 years ago
- be0ee87 Improve some of the conversion warnings to fire on conversion to bool. by David Blaikie · 13 years ago
- 8f674a8 objective-c nonfragile abi: discourage ivar declarations by Fariborz Jahanian · 13 years ago
- 31c195a Fix our handling of visibility in explicit template instantiations. by Rafael Espindola · 13 years ago
- 1a8d686 Fixes crasher bug in JSONCompilationDatabase for invalid input. by Manuel Klimek · 13 years ago
- 9172091 add embedded linux variants that occur in the field by Gabor Greif · 13 years ago
- c608c3c Further improvement to wording of overload resolution diagnostics, and including by Richard Smith · 13 years ago
- 6314db9 PR12798: Don't drop part of the nested name specifier when instantiating a by Richard Smith · 13 years ago
- dbbeccc PR12826: Converting an lvalue to an xvalue is a no-op conversion, not an lvalue-to-rvalue conversion. by Richard Smith · 13 years ago
- 3003e1d Fold the six functions checking explicitly-defaulted special member functions by Richard Smith · 13 years ago
- 4b50263 Change the mangling of a ref-qualifier on a function type so that by John McCall · 13 years ago
- 20119a8 [objcmt] When rewriting to subscripting syntax, make sure we put by Argyrios Kyrtzidis · 13 years ago
- 0cd00be objc: allow typedef'ing an id to a pointer to a c-struct only. by Fariborz Jahanian · 13 years ago
- 2375677 Recover properly from a redundant 'typename' before a non-nested name. This is by Richard Smith · 13 years ago
- 055b395 [objcmt] When rewriting to array/dictionary literals, add an explicit by Argyrios Kyrtzidis · 13 years ago
- 13ec910 Implement IRGen for C++11's "T{1, 2, 3}", where T is an aggregate and the by Richard Smith · 13 years ago
- 2ba542c Teach the driver on Linux to respect -nodefaultlibs. by Chandler Carruth · 13 years ago
- 6e4244e [analyzer] strncpy: Special-case a length of 0 to avoid an incorrect warning. by Jordy Rose · 13 years ago
- 599f1b7 Refactor all the by Rafael Espindola · 13 years ago
- 420efd8 Produce a warning for mismatched section attributes. Completest pr9356. by Rafael Espindola · 13 years ago
- ee409a9 Add support for __attribute__((hot)) and __attribute__((cold)). by Benjamin Kramer · 13 years ago
- 3eda6fa Only check NSArray/NSDictionary boxing method params once. by Jordy Rose · 13 years ago
- d2d0655 80-col violations and minor reformatting. No functionality change. by Jordy Rose · 13 years ago
- c8521fa Clean up ObjC boxing method checks by reducing duplicated code. by Jordy Rose · 13 years ago
- 342dd43 Remove unused variable. Thanks to Dmitri Gribenko for noticing it. by Rafael Espindola · 13 years ago
- 99446d9 Don't crash on boxed strings when +stringWithUTF8String: is missing. by Jordy Rose · 13 years ago
- 70fdbc3 [analyzer] RetainCountChecker: track ObjC boxed expression objects. by Jordy Rose · 13 years ago
- 703d412 Teach the parser to deal with multiple spellings for the same by Douglas Gregor · 13 years ago
- c8848f3 [analyzer] Do not walk the types for call graph construction. by Anna Zaks · 13 years ago
- b2749b1 Make sure that we recognize __attribute__((align)) as a synonym for by Douglas Gregor · 13 years ago
- 2f68ca0 When diagnosing inaccessible temporary destructors in decltype expressions, use by Richard Smith · 13 years ago
- e2c6066 Merge branch 'format-string-braced-init' by Matt Beaumont-Gay · 13 years ago
- 91338cf Coerce byval aggregate arguments to integers whose size matches the integer by Akira Hatanaka · 13 years ago
- df87558 The Lexer constructor expects a source location at the start of the by Argyrios Kyrtzidis · 13 years ago
- 8aeb147 Fix handling of vector return types. by Akira Hatanaka · 13 years ago
- 6ea175b Hexagon V5 intrinsics support in clang. by Sirish Pande · 13 years ago
- f7b8056 PR11857: When the wrong number of arguments are provided for a function by Richard Smith · 13 years ago
- bf9da1f Fix a recent regression with the merging of format attributes. by Rafael Espindola · 13 years ago
- 7d9ae25 For final output files create them with mode 0664 to match other by Eric Christopher · 13 years ago
- 2df1a58 [objc] When boxing a BOOL/NSInteger/NSUInteger type, use the corresponding by Argyrios Kyrtzidis · 13 years ago
- 51d18ca Include line that was meant to be in my last commit. by Ted Kremenek · 13 years ago
- 8667052 Fix insidious RegionStore bug where we (a) didn't handle vector types and (b) had by Ted Kremenek · 13 years ago
- b3b1ae8 [analyzer] Exit early if constraint solver is given a non-integer symbol by Anna Zaks · 13 years ago
- 5f9688b Hexagon V5 FP support. by Sirish Pande · 13 years ago
- edd2760 Don't crash when using objc boxed expression with parsing error. by Argyrios Kyrtzidis · 13 years ago
- 36faadd When AST-dumping the ObjCBoxedExpr node, also print out what selector it chose. by Argyrios Kyrtzidis · 13 years ago
- 66c44e7 [preprocessor] Make sure that MacroExpands callbacks are always in source order. by Argyrios Kyrtzidis · 13 years ago
- 16afdf7 Fix an assertion hit when the serialized diagnostics writer receive a diagnostic by Argyrios Kyrtzidis · 13 years ago
- dd44f34 Warn about visibility attributes in typedefs. by Rafael Espindola · 13 years ago
- 98ae834 Fix an old (2009) FIXME: by Rafael Espindola · 13 years ago
- 88feba0 [analyzer] Do not highlight the range of the statement in case of leak. by Anna Zaks · 13 years ago
- 1de6a6c objective-c. Fixes a 'fixit' where location of by Fariborz Jahanian · 13 years ago
- f6278e5 Pull some cases of initialization with self-reference warnings out of by Richard Trieu · 13 years ago
- a971d24 Push the knowledge that we are parsing a type-id/type-name further into the by Richard Smith · 13 years ago
- f63eee7 Stop AltiVec parsing from going down the 'implicit int' codepath as part of its by Richard Smith · 13 years ago
- 4903320 Roll logic into a single if statement, per David's suggestion. by Chad Rosier · 13 years ago
- 8c99027 Use the triple directly, rather then getTriple(). by Chad Rosier · 13 years ago
- c793ea4 Now the proper fix for r156497. Sorry for the churn. by Chad Rosier · 13 years ago
- 4ec2678 Move the iOSVersionMin string to a header so as to avoid a dangling pointer. by Chad Rosier · 13 years ago
- 025983a Fix -Wdelete-non-virtual-dtor in Tooling code. by David Blaikie · 13 years ago