aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/cmpdi-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/cmpdi-1.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/cmpdi-1.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/cmpdi-1.c b/gcc/testsuite/gcc.c-torture/compile/cmpdi-1.c
deleted file mode 100644
index 9e1b659c7cf..00000000000
--- a/gcc/testsuite/gcc.c-torture/compile/cmpdi-1.c
+++ /dev/null
@@ -1,15 +0,0 @@
-f (long long d)
-{
- int i = 0;
- if (d == 1)
- i = 1;
- return i;
-}
-
-g (long long d)
-{
- int i = 0;
- if (d <= 0)
- i = 1;
- return i;
-}