]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20010604-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20010604-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20010604-1.c b/gcc/testsuite/gcc.c-torture/execute/20010604-1.c
deleted file mode 100644 (file)
index e0deaf5..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <stdbool.h>
-
-int f (int a, int b, int c, _Bool d, _Bool e, _Bool f, char g)
-{
-  if (g != 1 || d != true || e != true || f != true) abort ();
-  return a + b + c;
-}
-
-int main (void)
-{
-  if (f (1, 2, -3, true, true, true, '\001'))
-    abort ();
-  exit (0);
-}