index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
test
/
Sema
/
format-strings.c
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Re-relax conversion specifier checking for printf format strings and conversi...
Ted Kremenek
2011-07-13
1
-2
/
+2
*
Fix inversion in argument type checking for format strings with conversion sp...
Ted Kremenek
2011-07-13
1
-0
/
+9
*
Don't add redundant FormatAttr, ConstAttr, or NoThrowAttr attributes,
Douglas Gregor
2011-06-15
1
-0
/
+5
*
Don't warn about using PredefinedExprs as format string literals. These neve...
Ted Kremenek
2011-02-24
1
-0
/
+8
*
Allow -Wformat to be enabled without -Wformat-security. GCC gates
Chandler Carruth
2011-02-21
1
-0
/
+10
*
Add semantic checking that the "thousands grouping"
Ted Kremenek
2011-01-08
1
-0
/
+3
*
Add printf format string parsing support for '
Ted Kremenek
2011-01-08
1
-0
/
+6
*
Fix range in printf warnings for invalid conversion specifiers.
Ted Kremenek
2010-12-02
1
-0
/
+1
*
The 'X' printf type has a valid alternative form. Fixes PR8641.
Anders Carlsson
2010-11-21
1
-0
/
+5
*
Previously, the printf warnings would say your arguments type was 'int' when ...
Ted Kremenek
2010-10-21
1
-1
/
+9
*
Check format strings when a called function has more than one FormatAttr (one...
Ted Kremenek
2010-09-09
1
-1
/
+10
*
It appears that technically a null format string is not warned under -Wformat...
Ted Kremenek
2010-09-09
1
-0
/
+7
*
Fix printf format string checking for '%lc' (which expects a wint_t or compat...
Ted Kremenek
2010-08-24
1
-0
/
+15
*
Don't warn when a '%%' or '%*d' (scanf) is used in a format string with posit...
Ted Kremenek
2010-07-19
1
-0
/
+2
*
Bug 7377: printf checking fails to flag some undefined behavior
Tom Care
2010-06-21
1
-4
/
+2
*
Bug 7377: Fixed several bad printf format string bugs.
Tom Care
2010-06-17
1
-7
/
+36
*
Fix format string checking of '%c' by treating it as an integer conversion. ...
Ted Kremenek
2010-06-17
1
-0
/
+2
*
Extend format string type-checking to include '%p'. Fixes remaining cases PR...
Ted Kremenek
2010-06-16
1
-0
/
+1
*
Tell the string literal parser when it's not permitted to emit
Douglas Gregor
2010-05-26
1
-0
/
+3
*
Whenever we complain about a failed initialization of a function or
Douglas Gregor
2010-04-22
1
-2
/
+2
*
Fix two bugs in format-string checking:
Ted Kremenek
2010-03-25
1
-0
/
+13
*
Allow a '0' precision in format strings (as the man page says it is okay).
Ted Kremenek
2010-03-01
1
-0
/
+3
*
Fix crasher caused by setting a bit in a possibly empty bitvector while
Ted Kremenek
2010-02-27
1
-0
/
+1
*
For printf format string checking, add support for positional format strings.
Ted Kremenek
2010-02-27
1
-0
/
+13
*
For printf format string checking, move the tracking of the data argument ind...
Ted Kremenek
2010-02-26
1
-2
/
+2
*
Disable one test case because of the inconsistent results it is giving on
Ted Kremenek
2010-02-24
1
-1
/
+3
*
Add support for '%C' and '%S' printf conversion specifiers.
Ted Kremenek
2010-02-24
1
-0
/
+15
*
Add test case to show that Clang now checks the format string
Ted Kremenek
2010-02-16
1
-1
/
+4
*
Fix test case.
Ted Kremenek
2010-02-16
1
-1
/
+1
*
Refactor the logic for printf argument type-checking into analyze_printf::Arg...
Ted Kremenek
2010-02-16
1
-0
/
+6
*
Patch by Cristian Draghici:
Ted Kremenek
2010-02-11
1
-0
/
+12
*
Implement promotion for enumeration types.
Douglas Gregor
2010-02-02
1
-0
/
+4
*
Add format string type checking support for 'long double'.
Ted Kremenek
2010-02-01
1
-0
/
+2
*
Format string checking: selectively ignore implicit casts to 'int'
Ted Kremenek
2010-02-01
1
-0
/
+5
*
Recognize 'q' as a format length modifier (from BSD).
Daniel Dunbar
2010-01-30
1
-1
/
+2
*
Add format string checking of 'double' arguments. Fixes <rdar://problem/6931...
Ted Kremenek
2010-01-30
1
-0
/
+1
*
Add basic type checking of format string conversion specifiers and their argu...
Ted Kremenek
2010-01-30
1
-2
/
+10
*
Be a little more permissive than C99: allow 'unsigned' to be used for
Ted Kremenek
2010-01-29
1
-3
/
+8
*
Switch Sema over to using the new implementation of format string
Ted Kremenek
2010-01-29
1
-4
/
+22
*
add a bunch of missing prototypes to tests
Chris Lattner
2010-01-09
1
-0
/
+1
*
fix a bug handling the gnu ?: extension. Patch by Storlek on IRC,
Chris Lattner
2009-12-22
1
-0
/
+1
*
Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.
Daniel Dunbar
2009-12-15
1
-1
/
+1
*
Don't #include <stdio.h> when tests don't need it, or use clang instead of cl...
Daniel Dunbar
2009-11-17
1
-8
/
+11
*
Fix some Window-isms to get these tests to pass on Windows.
John Thompson
2009-10-29
1
-1
/
+5
*
Fix <rdar://problem/6880975> [format string] Assertion failed: (Arg < NumArgs...
Ted Kremenek
2009-05-13
1
-0
/
+5
*
implement -Wformat-security properly, which is enabled by default.
Chris Lattner
2009-04-29
1
-0
/
+12
*
tweak warning options to be more like gcc:
Chris Lattner
2009-04-29
1
-1
/
+1
*
Rename clang to clang-cc.
Daniel Dunbar
2009-03-24
1
-1
/
+1
*
Fix <rdar://problem/6704086> by allowing the format string checking in Sema to
Ted Kremenek
2009-03-20
1
-0
/
+14
*
use the full spelling of a string literal token so that trigraphs
Chris Lattner
2009-02-18
1
-2
/
+7
[prev]
[next]