]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/compile/920608-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 920608-1.c
diff --git a/gcc/testsuite/gcc.c-torture/compile/920608-1.c b/gcc/testsuite/gcc.c-torture/compile/920608-1.c
deleted file mode 100644 (file)
index cae1978..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-foo (p)
-     int *p;
-{
-  int x;
-  int a;
-
-  a = p[0];
-  x = a + 5;
-  a = -1;
-  p[0] = x - 5;
-  return a;
-}
-
-bar (p)
-{
-  short x;
-  int a;
-
-  x = ((short *) p)[1];
-#if INHIBIT_COMBINE
-  ((short *) p)[0] = x;
-#endif
-
-  return (x < 45);
-}