]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/format/ext-5.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / format / ext-5.c
diff --git a/gcc/testsuite/gcc.dg/format/ext-5.c b/gcc/testsuite/gcc.dg/format/ext-5.c
deleted file mode 100644 (file)
index eebc7fa..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-/* Test for gettext default attributes.  */
-/* Origin: Joseph Myers <jsm28@cam.ac.uk> */
-/* { dg-do compile } */
-/* { dg-options "-std=gnu99 -Wformat" } */
-
-#include "format.h"
-
-void
-foo (int i, long l)
-{
-  printf (gettext ("%d"), i);
-  printf (gettext ("%ld"), i); /* { dg-warning "format" "gettext" } */
-  printf (dgettext ("", "%d"), i);
-  printf (dgettext ("", "%ld"), i); /* { dg-warning "format" "dgettext" } */
-  printf (dcgettext ("", "%d", 0), i);
-  printf (dcgettext ("", "%ld", 0), i); /* { dg-warning "format" "dcgettext" } */
-}