]> granicus.if.org Git - clang/commitdiff
Support all null pointer literals in format strings.
authorDavid Blaikie <dblaikie@gmail.com>
Fri, 10 Feb 2012 21:07:25 +0000 (21:07 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Fri, 10 Feb 2012 21:07:25 +0000 (21:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150276 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaChecking.cpp
test/SemaCXX/format-strings-0x.cpp
test/SemaCXX/format-strings.cpp

index be326880d587e319ff86bf5500e9eff523c4e494..cf0469592f8d71faa259615a0f3f189202807c5a 100644 (file)
@@ -1369,6 +1369,13 @@ bool Sema::SemaCheckStringLiteral(const Expr *E, Expr **Args,
 
   E = E->IgnoreParenCasts();
 
+  if (E->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNotNull))
+    // Technically -Wformat-nonliteral does not warn about this case.
+    // The behavior of printf and friends in this case is implementation
+    // dependent.  Ideally if the format string cannot be null then
+    // it should have a 'nonnull' attribute in the function prototype.
+    return true;
+
   switch (E->getStmtClass()) {
   case Stmt::BinaryConditionalOperatorClass:
   case Stmt::ConditionalOperatorClass: {
@@ -1381,14 +1388,6 @@ bool Sema::SemaCheckStringLiteral(const Expr *E, Expr **Args,
                                  inFunctionCall);
   }
 
-  case Stmt::GNUNullExprClass:
-  case Stmt::IntegerLiteralClass:
-    // Technically -Wformat-nonliteral does not warn about this case.
-    // The behavior of printf and friends in this case is implementation
-    // dependent.  Ideally if the format string cannot be null then
-    // it should have a 'nonnull' attribute in the function prototype.
-    return true;
-
   case Stmt::ImplicitCastExprClass: {
     E = cast<ImplicitCastExpr>(E)->getSubExpr();
     goto tryAgain;
index 9359c7b1f99aaaddb38fdafb1c43cd5d11dfbe35..e7c5904c66e371e75f4085b17c563e29dfce4eeb 100644 (file)
@@ -10,4 +10,6 @@ void f(char **sp, float *fp) {
 
   printf("%a", 1.0);
   scanf("%afoobar", fp);
+  printf(nullptr);
+  printf(*sp); // expected-warning {{not a string literal}}
 }
index 456167dfc96f44f9d942dd06d5c0fae031b6ae2d..0d5b62598d11bcd97e2725b4e38a3184b5d38a0d 100644 (file)
@@ -47,6 +47,8 @@ extern "C" {
 
 void rdar8269537(const char *f)
 {
+  test_null_format(false); // expected-warning {{null from a constant boolean}}
+  test_null_format(0); // no-warning
   test_null_format(__null); // no-warning
   test_null_format(f); // expected-warning {{not a string literal}}
 }