diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/round.c')
-rwxr-xr-x | gcc/testsuite/gcc.c-torture/unsorted/round.c | 13 |
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 100755 index 5233e65..0000000 --- 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); -} |