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.c
Age
Commit message (
Expand
)
Author
2010-03-25
Fix two bugs in format-string checking:
Ted Kremenek
2010-03-01
Allow a '0' precision in format strings (as the man page says it is okay).
Ted Kremenek
2010-02-27
Fix crasher caused by setting a bit in a possibly empty bitvector while
Ted Kremenek
2010-02-27
For printf format string checking, add support for positional format strings.
Ted Kremenek
2010-02-26
For printf format string checking, move the tracking of the data argument ind...
Ted Kremenek
2010-02-24
Disable one test case because of the inconsistent results it is giving on
Ted Kremenek
2010-02-24
Add support for '%C' and '%S' printf conversion specifiers.
Ted Kremenek
2010-02-16
Add test case to show that Clang now checks the format string
Ted Kremenek
2010-02-16
Fix test case.
Ted Kremenek
2010-02-16
Refactor the logic for printf argument type-checking into analyze_printf::Arg...
Ted Kremenek
2010-02-11
Patch by Cristian Draghici:
Ted Kremenek
2010-02-02
Implement promotion for enumeration types.
Douglas Gregor
2010-02-01
Add format string type checking support for 'long double'.
Ted Kremenek
2010-02-01
Format string checking: selectively ignore implicit casts to 'int'
Ted Kremenek
2010-01-30
Recognize 'q' as a format length modifier (from BSD).
Daniel Dunbar
2010-01-30
Add format string checking of 'double' arguments. Fixes <rdar://problem/6931...
Ted Kremenek
2010-01-30
Add basic type checking of format string conversion specifiers and their argu...
Ted Kremenek
2010-01-29
Be a little more permissive than C99: allow 'unsigned' to be used for
Ted Kremenek
2010-01-29
Switch Sema over to using the new implementation of format string
Ted Kremenek
2010-01-09
add a bunch of missing prototypes to tests
Chris Lattner
2009-12-22
fix a bug handling the gnu ?: extension. Patch by Storlek on IRC,
Chris Lattner
2009-12-15
Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.
Daniel Dunbar
2009-11-17
Don't #include <stdio.h> when tests don't need it, or use clang instead of cl...
Daniel Dunbar
2009-10-29
Fix some Window-isms to get these tests to pass on Windows.
John Thompson
2009-05-13
Fix <rdar://problem/6880975> [format string] Assertion failed: (Arg < NumArgs...
Ted Kremenek
2009-04-29
implement -Wformat-security properly, which is enabled by default.
Chris Lattner
2009-04-29
tweak warning options to be more like gcc:
Chris Lattner
2009-03-24
Rename clang to clang-cc.
Daniel Dunbar
2009-03-20
Fix <rdar://problem/6704086> by allowing the format string checking in Sema to
Ted Kremenek
2009-02-18
use the full spelling of a string literal token so that trigraphs
Chris Lattner
2009-02-18
add c testcase for string literal diagnostic improvement.
Chris Lattner
2009-02-14
Add hook to add attributes to function declarations that we know
Douglas Gregor
2009-01-12
Fix test case (incomplete "expected-warning" line)
Ted Kremenek
2009-01-12
Patch by Roman Divacky:
Ted Kremenek
2008-10-02
Add support for format string checking of object-size checking
Daniel Dunbar
2008-08-20
Fix test failure on Linux.
Eli Friedman
2008-08-05
Add EXTWARN Diagnostic class.
Daniel Dunbar
2007-12-17
Modified format-string checking to not emit a warning when all of the
Ted Kremenek
2007-10-15
Fix a warning
Anders Carlsson
2007-10-12
Added notion of '*' specified format width/specifiers when checking
Ted Kremenek
2007-10-12
Add some more diagnostics for va_start, fix tests so they pass with these new...
Anders Carlsson
2007-10-11
rename -parse-ast-print to -ast-print
Chris Lattner
2007-09-26
Removed option "-parse-ast-check" from clang driver. This is now implemented
Ted Kremenek
2007-08-14
Added support for additional format string checking for the printf
Ted Kremenek
2007-08-10
initial support for checking format strings, patch by Ted Kremenek:
Chris Lattner