| Commit message (Expand) | Author | Age | Files | Lines |
| * | Use the argument location instead of the format string location when warning | Matt Beaumont-Gay | 2012-05-17 | 1 | -8/+8 |
| * | Don't warn when NULL is used within a macro but its conversion is outside a m... | David Blaikie | 2012-05-15 | 1 | -9/+10 |
| * | Changing std::string to SmallString for r156826. | David Blaikie | 2012-05-15 | 1 | -2/+2 |
| * | Improve some of the conversion warnings to fire on conversion to bool. | David Blaikie | 2012-05-15 | 1 | -3/+17 |
| * | Merge branch 'format-string-braced-init' | Matt Beaumont-Gay | 2012-05-11 | 1 | -1/+7 |
| * | Teach IsTailPaddedMemberArray() (used by -Warray-bounds) that a FieldDecl may... | Ted Kremenek | 2012-05-09 | 1 | -4/+12 |
| * | Inhibit ObjC format warning only in system headers (NSLocalizedString). | Jean-Daniel Dupas | 2012-05-04 | 1 | -1/+2 |
| * | IsTailPaddedMemberArray uses a FieldDecl's | Sean Callanan | 2012-05-04 | 1 | -5/+9 |
| * | Move Sema::RequireCompleteType() and Sema::RequireCompleteExprType() | Douglas Gregor | 2012-05-04 | 1 | -1/+1 |
| * | Fix handling of wint_t - we can't assume wint_t is purely an integer promotio... | James Molloy | 2012-05-04 | 1 | -1/+2 |
| * | Disable -Wformat-extra-args for arguments defined in system headers. | Bob Wilson | 2012-05-03 | 1 | -3/+6 |
| * | Turn the mixed-sign-comparison diagnostic into a runtime behavior | Douglas Gregor | 2012-05-01 | 1 | -3/+4 |
| * | When going through references to check if the function returns the address | Argyrios Kyrtzidis | 2012-04-30 | 1 | -24/+34 |
| * | Add FixItHint for -Wnull-conversion to initialize with an appropriate literal. | David Blaikie | 2012-04-30 | 1 | -1/+2 |
| * | Currently __builtin_annotation() only annotates an i32. | Julien Lerouge | 2012-04-28 | 1 | -8/+23 |
| * | Implement __atomic_fetch_nand and __atomic_nand_fetch to complete our set of | Richard Smith | 2012-04-13 | 1 | -0/+2 |
| * | Warn on 64-to-32 for source value of x bits where 64 >= x > 32. | David Blaikie | 2012-04-12 | 1 | -1/+1 |
| * | Implement support for 18 of the GNU-compatible __atomic builtins. | Richard Smith | 2012-04-12 | 1 | -98/+212 |
| * | Provide, and document, a set of __c11_atomic_* intrinsics to implement C11's | Richard Smith | 2012-04-11 | 1 | -5/+16 |
| * | Remove dead assignment to local variable. | Ted Kremenek | 2012-04-04 | 1 | -1/+0 |
| * | Pass parameters in the correct order when assembling an AtomicExpr. | David Chisnall | 2012-03-29 | 1 | -1/+1 |
| * | Suppress macro expansion of NULL in NULL warnings. | David Blaikie | 2012-03-16 | 1 | -2/+5 |
| * | Provide the specific target type in the -Wnull-conversion warning. | David Blaikie | 2012-03-15 | 1 | -1/+1 |
| * | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 2012-03-11 | 1 | -10/+10 |
| * | Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to | John McCall | 2012-03-10 | 1 | -11/+1 |
| * | -Wformat-non-iso: warn about positional arguments (pr12017) | Hans Wennborg | 2012-03-09 | 1 | -2/+12 |
| * | Fix a couple bugs in the way we handle array indexes in array bounds checking... | Eli Friedman | 2012-02-27 | 1 | -4/+4 |
| * | Modernize some code which processes CastExprs to use CastKinds. No intended ... | Eli Friedman | 2012-02-23 | 1 | -29/+21 |
| * | Warn about non-standard format strings (pr12017) | Hans Wennborg | 2012-02-22 | 1 | -2/+60 |
| * | Generate an AST for the conversion from a lambda closure type to a | Douglas Gregor | 2012-02-22 | 1 | -3/+5 |
| * | When calling a non variadic format function(vprintf, vscanf, NSLogv, …), wa... | Jean-Daniel Dupas | 2012-02-21 | 1 | -7/+21 |
| * | Make -Wformat fix-its preserve original conversion specifiers. | Hans Wennborg | 2012-02-15 | 1 | -2/+4 |
| * | Generalize -Wempty-body: warn when statement body is empty (closes: PR11329) | Dmitri Gribenko | 2012-02-14 | 1 | -0/+127 |
| * | Support all null pointer literals in format strings. | David Blaikie | 2012-02-10 | 1 | -8/+7 |
| * | Enhance checking for null format string literal to take into account __null. ... | Ted Kremenek | 2012-02-10 | 1 | -0/+1 |
| * | Implement return type deduction for lambdas per C++11 | Douglas Gregor | 2012-02-09 | 1 | -1/+1 |
| * | Various interrelated cleanups for lambdas: | Douglas Gregor | 2012-02-09 | 1 | -1/+4 |
| * | non-literal strftime format string is not unsafe. | Jean-Daniel Dupas | 2012-02-07 | 1 | -0/+5 |
| * | Implements support of format_arg attribute on C++ member. | Jean-Daniel Dupas | 2012-02-07 | 1 | -19/+14 |
| * | Basic: import SmallString<> into clang namespace | Dylan Noblesmith | 2012-02-05 | 1 | -4/+4 |
| * | Move a method from IdentifierTable.h out of line and remove the SmallString i... | Benjamin Kramer | 2012-02-04 | 1 | -0/+1 |
| * | Do not show macro expansion in strncat warnings, which can be defined as | Anna Zaks | 2012-02-03 | 1 | -7/+16 |
| * | Change the check for constant-conversion with width-1 bitfields so it doesn't... | Eli Friedman | 2012-02-02 | 1 | -2/+2 |
| * | Add a new compiler warning, which flags anti-patterns used as the size | Anna Zaks | 2012-02-01 | 1 | -4/+109 |
| * | Revert r149359. This was a hack to a problem with an easy workaround, and it... | Ted Kremenek | 2012-01-31 | 1 | -14/+4 |
| * | FormatCheckers should emit all diagnostics using EmitFormatDiagnostic(). | Jean-Daniel Dupas | 2012-01-31 | 1 | -15/+21 |
| * | Don't warn about -Wshorten-64-to-32 in unreachable code. Fixes <rdar://probl... | Ted Kremenek | 2012-01-31 | 1 | -4/+14 |
| * | Make a bunch of local functions 'static'. | Ted Kremenek | 2012-01-31 | 1 | -22/+23 |
| * | Let %S, %ls, %C match 16bit types in NSStrings. | Nico Weber | 2012-01-31 | 1 | -1/+2 |
| * | Disable "non literal format string" for NSString that result from a macro exp... | Jean-Daniel Dupas | 2012-01-30 | 1 | -0/+7 |