aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/unsorted/band.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/band.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/unsorted/band.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/band.c b/gcc/testsuite/gcc.c-torture/unsorted/band.c
deleted file mode 100644
index 74b02fd3b34..00000000000
--- a/gcc/testsuite/gcc.c-torture/unsorted/band.c
+++ /dev/null
@@ -1,16 +0,0 @@
-foo (a)
-{
- return (a & (1 << 31)) != 0;
-}
-
-main ()
-{
- if (foo (0))
- puts ("foo");
- else
- puts ("bar");
- if (foo (~0))
- puts ("foo");
- else
- puts ("bar");
-}