]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20010119-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20010119-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20010119-1.c b/gcc/testsuite/gcc.c-torture/execute/20010119-1.c
deleted file mode 100644 (file)
index c2a691a..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifdef __OPTIMIZE__
-extern void undef (void);
-
-void bar (unsigned x) { }
-void baz (unsigned x) { }
-
-extern inline void foo (int a, int b)
-{
-  int c = 0;
-  while (c++ < b)
-    (__builtin_constant_p (a) ? ((a) > 20000 ? undef () : bar (a)) : baz (a));
-}
-#else
-void foo (int a, int b)
-{
-}
-#endif
-
-int main (void)
-{
-  foo(10, 100);
-  exit (0);
-}