]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/warn/format1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / warn / format1.C
diff --git a/gcc/testsuite/g++.dg/warn/format1.C b/gcc/testsuite/g++.dg/warn/format1.C
deleted file mode 100644 (file)
index 27bc414..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-// Test that formats get checked according to C94.
-// Origin: Joseph Myers <jsm28@cam.ac.uk>.
-// { dg-do compile }
-// { dg-options "-ansi -pedantic -Wformat" }
-
-#include <cstdio>
-
-void
-foo (int i, int *ip, __WINT_TYPE__ lc, wchar_t *ls)
-{
-  std::printf ("%d%ls%lc\n", i, ls, lc);
-  std::printf ("%d", ls); // { dg-warning "format" "printf warning" }
-  std::scanf ("%d%lc%ls%l[abc]", ip, ls, ls, ls);
-  std::scanf ("%hd", ip); // { dg-warning "format" "scanf warning" }
-}