| Commit message (Expand) | Author | Age | Files | Lines |
* | Format strings: don't ever convert %+d to %lu. | Jordan Rose | 2013-01-17 | 1 | -1/+1 |
* | Format strings: correct signedness if already correcting width (%d,%u). | Jordan Rose | 2013-01-17 | 1 | -1/+19 |
* | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith | 2013-01-02 | 1 | -1/+1 |
* | Format strings: offer a cast to 'unichar' for %C in Objective-C contexts. | Jordan Rose | 2012-12-05 | 1 | -3/+5 |
* | Format strings: the correct conversion for 'char' is %c, not %d or %hhd. | Jordan Rose | 2012-12-05 | 1 | -1/+1 |
* | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 2012-12-04 | 1 | -1/+1 |
* | Format strings: %D, %U, and %O are valid on Darwin (same as %d, %u, %o). | Jordan Rose | 2012-09-13 | 1 | -3/+30 |
* | Remove redundant semicolons which are null statements. | Dmitri Gribenko | 2012-09-10 | 1 | -1/+1 |
* | Format strings: %Ld isn't available on Darwin or Windows. | Jordan Rose | 2012-09-08 | 1 | -3/+5 |
* | Properly check length modfiers for %n in format strings. | Hans Wennborg | 2012-08-07 | 1 | -2/+27 |
* | Remove ScanfArgType and bake that logic into ArgType. | Hans Wennborg | 2012-08-07 | 1 | -1/+1 |
* | Rename analyze_format_string::ArgTypeResult to ArgType | Hans Wennborg | 2012-08-07 | 1 | -23/+23 |
* | Make -Wformat check the argument type for %n. | Hans Wennborg | 2012-07-30 | 1 | -0/+6 |
* | Make -Wformat walk the typedef chain when looking for size_t, etc. | Hans Wennborg | 2012-07-27 | 1 | -15/+2 |
* | Make suggestions for mismatched enum arguments to printf/scanf. | Jordan Rose | 2012-06-04 | 1 | -0/+4 |
* | Suggest '%@' for Objective-C objects in ObjC format strings. | Jordan Rose | 2012-05-30 | 1 | -1/+23 |
* | Format string analysis: give 'q' its own enumerator. | Hans Wennborg | 2012-02-16 | 1 | -2/+6 |
* | Make -Wformat fix-its preserve original conversion specifiers. | Hans Wennborg | 2012-02-15 | 1 | -4/+8 |
* | Let %S, %ls, %C match 16bit types in NSStrings. | Nico Weber | 2012-01-31 | 1 | -3/+10 |
* | Fix NSLog format string checking for %@. | Ted Kremenek | 2012-01-25 | 1 | -0/+2 |
* | Teach scanf/printf checking about '%Ld' and friends (a GNU extension). Fixes... | Ted Kremenek | 2012-01-24 | 1 | -2/+4 |
* | scanf: parse the 'm' length modifier, and check that the right arguments | Hans Wennborg | 2012-01-12 | 1 | -0/+2 |
* | Support the 'a' length modifier in scanf format strings as a C90 | Hans Wennborg | 2011-12-15 | 1 | -4/+11 |
* | Remove unnecessary braces from my previous commit. | Hans Wennborg | 2011-12-09 | 1 | -2/+1 |
* | Make printf warnings refer to wint_t and wchar_t by name | Hans Wennborg | 2011-12-09 | 1 | -6/+9 |
* | Move definition of ConversionSpecifier::toString() to FormatString.cpp | Hans Wennborg | 2011-12-09 | 1 | -40/+0 |
* | fix format specifier fixit for printf("%ld", "foo"); | Hans Wennborg | 2011-12-09 | 1 | -0/+2 |
* | Make printf warnings refer to intmax_t et al. by name | Hans Wennborg | 2011-12-07 | 1 | -4/+7 |
* | Revert r145697 and dependent patch r145702. It added a dependency from | Nick Lewycky | 2011-12-02 | 1 | -28/+5 |
* | Make r145697 actually work. | Hans Wennborg | 2011-12-02 | 1 | -1/+1 |
* | Make conversion specifier warning refer to typedef if possible. | Hans Wennborg | 2011-12-02 | 1 | -5/+28 |
* | Teach format string analysis that "%zu" means size_t. | Hans Wennborg | 2011-10-27 | 1 | -9/+5 |
* | Tweak printf format string parsing to accept 'hh' conversion specifier to acc... | Ted Kremenek | 2011-10-25 | 1 | -1/+1 |
* | More metaprogramming with builtin types. | John McCall | 2011-10-18 | 1 | -15/+9 |
* | Suggest %zu for size_t args to printf. | Hans Wennborg | 2011-10-18 | 1 | -1/+18 |
* | Add a new placeholder type to represent "unbridged" | John McCall | 2011-10-17 | 1 | -0/+1 |
* | Provide half floating point support as a storage only type. | Anton Korobeynikov | 2011-10-14 | 1 | -0/+1 |
* | Switch assert(0/false) llvm_unreachable. | David Blaikie | 2011-09-23 | 1 | -1/+1 |
* | Fix else style. No functionality change intended. | Chad Rosier | 2011-08-17 | 1 | -4/+2 |
* | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -1/+1 |
* | Revert r133024, "[format strings] correctly suggest correct type for '%@' | Daniel Dunbar | 2011-06-28 | 1 | -2/+0 |
* | [format strings] correctly suggest correct type for '%@' specifiers. Fixes <... | Ted Kremenek | 2011-06-14 | 1 | -0/+2 |
* | Don't print fixits for format specifiers in cases where the fixit does not ac... | Eli Friedman | 2011-04-27 | 1 | -12/+27 |
* | When generating printf fixits, preserve the original formating for unsigned i... | Ted Kremenek | 2011-04-25 | 1 | -1/+3 |
* | Fix whitespace. | NAKAMURA Takumi | 2011-01-27 | 1 | -4/+4 |
* | 7bit-ize. | NAKAMURA Takumi | 2011-01-27 | 1 | -1/+1 |
* | Add semantic checking that the "thousands grouping" | Ted Kremenek | 2011-01-08 | 1 | -0/+18 |
* | Add printf format string parsing support for ' | Ted Kremenek | 2011-01-08 | 1 | -1/+5 |
* | The -fshort-wchar option causes wchar_t to become unsigned, in addition to being | Chris Lattner | 2010-12-25 | 1 | -1/+2 |
* | Fix range in printf warnings for invalid conversion specifiers. | Ted Kremenek | 2010-12-02 | 1 | -1/+1 |