aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/execute/960218-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/execute/960218-1.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/execute/960218-1.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/gcc/testsuite/gcc.c-torture/execute/960218-1.c b/gcc/testsuite/gcc.c-torture/execute/960218-1.c
deleted file mode 100644
index 7301a17b00d..00000000000
--- a/gcc/testsuite/gcc.c-torture/execute/960218-1.c
+++ /dev/null
@@ -1,22 +0,0 @@
-int glob;
-
-g (x)
-{
- glob = x;
- return 0;
-}
-
-f (x)
-{
- int a = ~x;
- while (a)
- a = g (a);
-}
-
-main ()
-{
- f (3);
- if (glob != -4)
- abort ();
- exit (0);
-}