aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/format-strings.c
AgeCommit message (Expand)Author
2013-01-12Add a comment to test to clarify the intention hereDmitri Gribenko
2012-09-08Format strings: suggest %lld instead of %qd and %Ld with -Wformat-non-iso.Jordan Rose
2012-09-08Format strings: %Ld isn't available on Darwin or Windows.Jordan Rose
2012-08-07Properly check length modfiers for %n in format strings.Hans Wennborg
2012-07-31-Wformat: better handling of qualifiers on pointer argumentsHans Wennborg
2012-07-30Do not warn on correct use of the '%n' format specifier.Matt Beaumont-Gay
2012-07-30Make -Wformat check the argument type for %n.Hans Wennborg
2012-05-17Use the argument location instead of the format string location when warningMatt Beaumont-Gay
2012-05-11Merge branch 'format-string-braced-init'Matt Beaumont-Gay
2012-05-11Fix a recent regression with the merging of format attributes.Rafael Espindola
2012-05-08Make -Wformat accept printf("%hhx", c); with -funsigned-charHans Wennborg
2012-05-04Add a predefine __WINT_UNSIGNED__, similar to __WCHAR_UNSIGNED__, and test th...James Molloy
2012-05-04Fix handling of wint_t - we can't assume wint_t is purely an integer promotio...James Molloy
2012-05-03Add a test for r156092.Bob Wilson
2012-02-22Warn about non-standard format strings (pr12017)Hans Wennborg
2012-02-21When calling a non variadic format function(vprintf, vscanf, NSLogv, …), wa...Jean-Daniel Dupas
2012-02-16Format string analysis: give 'q' its own enumerator.Hans Wennborg
2012-02-13Fix typo in PrintfConversionSpecifier::isDoubleArg()Hans Wennborg
2012-02-07non-literal strftime format string is not unsafe.Jean-Daniel Dupas
2012-01-31FormatCheckers should emit all diagnostics using EmitFormatDiagnostic().Jean-Daniel Dupas
2012-01-30Update on format attribute handling.Jean-Daniel Dupas
2012-01-24Teach scanf/printf checking about '%Ld' and friends (a GNU extension). Fixes...Ted Kremenek
2012-01-20Tighten format string diagnostic and make it a bit clearer (and a bit closer ...Ted Kremenek
2011-10-28Fix for PR9751 to change the behavior of -Wformat warnings. If the formatRichard Trieu
2011-10-25Tweak printf format string parsing to accept 'hh' conversion specifier to acc...Ted Kremenek
2011-09-29Do not warn about empty format strings when there are no data arguments. Fix...Ted Kremenek
2011-08-27Control 'invalid conversion specifier' warnings under a subflag (-Wformat-inv...Ted Kremenek
2011-07-14Revert r135147 and r135075. The consensus was that this wasn't the right thi...Ted Kremenek
2011-07-14Reapply r135075, but modify format-strings.c and format-strings-fixit.c test ...Ted Kremenek
2011-07-13Re-relax conversion specifier checking for printf format strings and conversi...Ted Kremenek
2011-07-13Fix inversion in argument type checking for format strings with conversion sp...Ted Kremenek
2011-06-15Don't add redundant FormatAttr, ConstAttr, or NoThrowAttr attributes,Douglas Gregor
2011-02-24Don't warn about using PredefinedExprs as format string literals. These neve...Ted Kremenek
2011-02-21Allow -Wformat to be enabled without -Wformat-security. GCC gatesChandler Carruth
2011-01-08Add semantic checking that the "thousands grouping"Ted Kremenek
2011-01-08Add printf format string parsing support for 'Ted Kremenek
2010-12-02Fix range in printf warnings for invalid conversion specifiers.Ted Kremenek
2010-11-21The 'X' printf type has a valid alternative form. Fixes PR8641.Anders Carlsson
2010-10-21Previously, the printf warnings would say your arguments type was 'int' when ...Ted Kremenek
2010-09-09Check format strings when a called function has more than one FormatAttr (one...Ted Kremenek
2010-09-09It appears that technically a null format string is not warned under -Wformat...Ted Kremenek
2010-08-24Fix printf format string checking for '%lc' (which expects a wint_t or compat...Ted Kremenek
2010-07-19Don't warn when a '%%' or '%*d' (scanf) is used in a format string with posit...Ted Kremenek
2010-06-21Bug 7377: printf checking fails to flag some undefined behavior Tom Care
2010-06-17Bug 7377: Fixed several bad printf format string bugs.Tom Care
2010-06-17Fix format string checking of '%c' by treating it as an integer conversion. ...Ted Kremenek
2010-06-16Extend format string type-checking to include '%p'. Fixes remaining cases PR...Ted Kremenek
2010-05-26Tell the string literal parser when it's not permitted to emitDouglas Gregor
2010-04-22Whenever we complain about a failed initialization of a function orDouglas Gregor
2010-03-25Fix two bugs in format-string checking:Ted Kremenek