]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20000227-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20000227-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20000227-1.c b/gcc/testsuite/gcc.c-torture/execute/20000227-1.c
deleted file mode 100644 (file)
index 395a02c..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-static const unsigned char f[] = "\0\377";
-static const unsigned char g[] = "\0ΓΏ";
-
-int main(void)
-{
-  if (sizeof f != 3 || sizeof g != 3)
-    abort ();
-  if (f[0] != g[0])
-    abort ();
-  if (f[1] != g[1])
-    abort ();
-  if (f[2] != g[2])
-    abort ();
-  return 0;
-}