]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/20000614-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / 20000614-1.c
diff --git a/gcc/testsuite/gcc.dg/20000614-1.c b/gcc/testsuite/gcc.dg/20000614-1.c
deleted file mode 100644 (file)
index abc8ca2..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-/* { dg-do run { target i?86-*-* } } */
-/* { dg-options "-O2" } */
-
-void bar(char *p)
-{
-}
-
-static inline void foo (unsigned long base, unsigned char val)
-{
-  val ^= (1<<2);
-  bar (val & (1<<5) ? "1" : "2");
-  bar (val & (1<<4) ? "1" : "2");
-  bar (val & (1<<3) ? "1" : "2");
-  bar (val & (1<<2) ? "1" : "2");
-  bar (val & (1<<1) ? "1" : "2");
-  bar (val & (1<<0) ? "1" : "2");
-  asm volatile ("": :"a" (val), "d" (base));
-}
-
-int main (void)
-{
-  foo (23, 1);
-  return 0;
-}