index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test
/
Sema
/
format-strings-scanf.c
Age
Commit message (
Expand
)
Author
2012-09-08
clang/test/Sema/format-strings-scanf.c: Relax a couple of expressions with ex...
NAKAMURA Takumi
2012-09-08
Format strings: %Ld isn't available on Darwin or Windows.
Jordan Rose
2012-08-07
Properly check length modfiers for %n in format strings.
Hans Wennborg
2012-08-07
Remove ScanfArgType and bake that logic into ArgType.
Hans Wennborg
2012-07-31
-Wformat: better handling of qualifiers on pointer arguments
Hans Wennborg
2012-07-30
Make -Wformat check the argument type for %n.
Hans Wennborg
2012-02-16
Format string analysis: give 'q' its own enumerator.
Hans Wennborg
2012-01-31
FormatCheckers should emit all diagnostics using EmitFormatDiagnostic().
Jean-Daniel Dupas
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
Tighten format string diagnostic and make it a bit clearer (and a bit closer ...
Ted Kremenek
2012-01-17
Treat -Wformat=0 as an alias for -Wformat.
Hans Wennborg
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
2012-01-12
scanf analysis: don't bail out after successful parse of scanlist
Hans Wennborg
2011-12-15
Fix test/Sema/format-strings-scanf.c
Hans Wennborg
2011-12-15
Support the 'a' length modifier in scanf format strings as a C90
Hans Wennborg
2011-12-12
Fix signature of vsscanf in Builtins.def
Hans Wennborg
2011-12-12
Fix signature of sscanf in Builtins.def
Hans Wennborg
2011-12-12
Make fscanf, vscanf, etc. be recognized as scanf-like functions.
Hans Wennborg
2011-12-10
Check that arguments to a scanf call match the format specifier,
Hans Wennborg
2011-10-28
Fix for PR9751 to change the behavior of -Wformat warnings. If the format
Richard Trieu
2010-07-20
Hookup checking for invalid length modifiers in scanf format strings.
Ted Kremenek
2010-07-19
Don't warn when a '%%' or '%*d' (scanf) is used in a format string with posit...
Ted Kremenek
2010-07-19
Hook up 'invalid conversion' warning for scanf format strings.
Ted Kremenek
2010-07-19
Add missing conversion specifier parsing for 'u', 'x', 'o', and 's'. Fixes <...
Ted Kremenek
2010-07-16
Remove unicode quotes characters that somehow made it into a recent commit of...
Ted Kremenek
2010-07-16
Hook up warning for an incomplete scanlist in scanf format strings.
Ted Kremenek
2010-07-16
Tweak zero-field width in scanf format string diagnostic.
Ted Kremenek
2010-07-16
Add initial test cases for scanf format string checking.
Ted Kremenek