aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/unsorted/or386.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/or386.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/unsorted/or386.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/or386.c b/gcc/testsuite/gcc.c-torture/unsorted/or386.c
deleted file mode 100644
index ad49f35043c..00000000000
--- a/gcc/testsuite/gcc.c-torture/unsorted/or386.c
+++ /dev/null
@@ -1,13 +0,0 @@
-typedef int xtype;
-
-xtype
-foo (a)
- xtype a;
-{
- return a | 0x7f;
-}
-
-main ()
-{
- printf ("%08x\n", foo (-1));
-}