aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/unsorted/round.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/round.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/unsorted/round.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/round.c b/gcc/testsuite/gcc.c-torture/unsorted/round.c
deleted file mode 100644
index 5233e65ea90..00000000000
--- a/gcc/testsuite/gcc.c-torture/unsorted/round.c
+++ /dev/null
@@ -1,13 +0,0 @@
-foo (a)
- double a;
-{
- printf ("%d\n", (int) a);
-}
-
-main ()
-{
- foo (1.6);
- foo (1.4);
- foo (-1.4);
- foo (-1.6);
-}