]> granicus.if.org Git - clang/commitdiff
Add a comment to test to clarify the intention here
authorDmitri Gribenko <gribozavr@gmail.com>
Sat, 12 Jan 2013 22:39:30 +0000 (22:39 +0000)
committerDmitri Gribenko <gribozavr@gmail.com>
Sat, 12 Jan 2013 22:39:30 +0000 (22:39 +0000)
Comment is taken from the commit message of r151080, by Jean-Daniel Dupas

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172332 91177308-0d34-0410-b5e6-96231b3b80d8

test/Sema/format-strings.c

index 8fb1218b99acb5f63a18afb6cc93c582d6df848c..ba1272148973fb5384cc33c8be9920f8583568bd 100644 (file)
@@ -58,6 +58,9 @@ def"
   printf("%*d", (unsigned) 1, 1); // no-warning  
 }
 
+// When calling a non-variadic format function (vprintf, vscanf, NSLogv, ...),
+// warn only if the format string argument is a parameter that is not itself
+// declared as a format string with compatible format.
 __attribute__((__format__ (__printf__, 2, 4)))
 void check_string_literal2( FILE* fp, const char* s, char *buf, ... ) {
   char * b;