]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/format/diag-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / format / diag-1.c
diff --git a/gcc/testsuite/gcc.dg/format/diag-1.c b/gcc/testsuite/gcc.dg/format/diag-1.c
deleted file mode 100644 (file)
index 1c9a246..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-/* Test for format diagnostics.  */
-/* Origin: Joseph Myers <jsm28@cam.ac.uk> */
-/* { dg-do compile } */
-/* { dg-options "-std=gnu99 -Wformat" } */
-
-#include "format.h"
-
-void
-foo (double d)
-{
-  /* This should get a message referring to `hh', not to `H'.  */
-  printf ("%hhf", d); /* { dg-warning "hh" "%hhf warning" } */
-  /* This should get a message referring to `ll', not to `q'.  */
-  printf ("%llf", d); /* { dg-warning "ll" "%llf warning" } */
-  /* This should get a message referring to `size_t format', not to
-     `unsigned int format' or similar.  */
-  printf ("%zu", d); /* { dg-warning "size_t format" "size_t format warning" } */
-}