index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Analysis
/
FormatString.cpp
Age
Commit message (
Expand
)
Author
2012-05-08
Make -Wformat accept printf("%hhx", c); with -funsigned-char
Hans Wennborg
2012-05-04
Fix handling of wint_t - we can't assume wint_t is purely an integer promotio...
James Molloy
2012-03-15
Support '%p' format specifier with block pointers.
Ted Kremenek
2012-03-09
-Wformat-non-iso: warn about positional arguments (pr12017)
Hans Wennborg
2012-02-22
Warn about non-standard format strings (pr12017)
Hans Wennborg
2012-02-16
Format string analysis: give 'q' its own enumerator.
Hans Wennborg
2012-02-06
Tweak format string checking to work with %@ and ObjC toll-free bridging. <r...
Ted Kremenek
2012-01-31
Format string warnings: don't a.k.a. wchar_t with wchar_t.
Hans Wennborg
2012-01-25
Fix NSLog format string checking for %@.
Ted Kremenek
2012-01-24
Teach scanf/printf checking about '%Ld' and friends (a GNU extension). Fixes...
Ted Kremenek
2012-01-20
The 'l' length modifier makes sense with the scanlist conversion specifier.
Ted Kremenek
2012-01-20
More dead code removal (using -Wunreachable-code)
David Blaikie
2012-01-12
scanf: parse the 'm' length modifier, and check that the right arguments
Hans Wennborg
2012-01-12
scanf analysis: the 'a' length modifier is valid with a scanlist
Hans Wennborg
2011-12-28
Support the 'a' scanf length modifier as an extension in C++.
Hans Wennborg
2011-12-15
Support the 'a' length modifier in scanf format strings as a C90
Hans Wennborg
2011-12-09
Make printf warnings refer to wint_t and wchar_t by name
Hans Wennborg
2011-12-09
Move definition of ConversionSpecifier::toString() to FormatString.cpp
Hans Wennborg
2011-12-07
Make printf warnings refer to intmax_t et al. by name
Hans Wennborg
2011-12-02
Revert r145697 and dependent patch r145702. It added a dependency from
Nick Lewycky
2011-12-02
Make conversion specifier warning refer to typedef if possible.
Hans Wennborg
2011-10-25
Tweak printf format string parsing to accept 'hh' conversion specifier to acc...
Ted Kremenek
2011-09-23
Removing a bunch of dead returns/breaks after llvm_unreachables.
David Blaikie
2011-09-23
Switch assert(0/false) llvm_unreachable.
David Blaikie
2011-07-23
remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....
Chris Lattner
2011-07-14
Revert r135147 and r135075. The consensus was that this wasn't the right thi...
Ted Kremenek
2011-07-14
Add extra sanity checking in FormatString::matchesType() that we are comparin...
Ted Kremenek
2011-07-14
Reapply r135075, but modify format-strings.c and format-strings-fixit.c test ...
Ted Kremenek
2011-07-14
Revert r135075, "format string checking: long and int have the same widths on...
NAKAMURA Takumi
2011-07-13
format string checking: long and int have the same widths on 32-bit, so we sh...
Ted Kremenek
2011-07-13
Re-relax conversion specifier checking for printf format strings and conversi...
Ted Kremenek
2011-07-13
Fix inversion in argument type checking for format strings with conversion sp...
Ted Kremenek
2011-06-28
Revert r133024, "[format strings] correctly suggest correct type for '%@'
Daniel Dunbar
2011-06-14
[format strings] correctly suggest correct type for '%@' specifiers. Fixes <...
Ted Kremenek
2010-11-06
Don't warn when matching %p to nullptr.
Anders Carlsson
2010-08-24
Fix printf format string checking for '%lc' (which expects a wint_t or compat...
Ted Kremenek
2010-08-22
Detabify.
Eli Friedman
2010-07-27
Revert r109428 "Hoist argument type checking into CheckFormatHandler. This i...
Michael J. Spencer
2010-07-26
Hoist argument type checking into CheckFormatHandler. This is prep for scanf...
Ted Kremenek
2010-07-20
Move 'hasValidLengthModifier' from PrintfFormatSpecifier to FormatSpecifier.
Ted Kremenek
2010-07-16
Add most of the boilerplate support for scanf format string checking. This i...
Ted Kremenek