aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/20010117-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/20010117-2.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/20010117-2.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/20010117-2.c b/gcc/testsuite/gcc.c-torture/compile/20010117-2.c
deleted file mode 100644
index 813468b56b2..00000000000
--- a/gcc/testsuite/gcc.c-torture/compile/20010117-2.c
+++ /dev/null
@@ -1,20 +0,0 @@
-unsigned char a, b;
-
-void baz (void)
-{
- if (b & 0x08)
- {
- int g = 0;
- int c = (b & 0x01);
- int d = a - g - c;
- int e = (a & 0x0f) - (g & 0x0f);
- int f = (a & 0xf0) - (g & 0xf0);
- int h = (a & 0x0f) - (g & 0x0f);
-
- if ((a ^ g) & (a ^ d) & 0x80) b |= 0x40;
- if ((d & 0xff00) == 0) b |= 0x01;
- if (!((a - h - c) & 0xff)) b |= 0x02;
- if ((a - g - c) & 0x80) b |= 0x80;
- a = (e & 0x0f) | (f & 0xf0);
- }
-}