diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/execute/divconst-2.c')
-rwxr-xr-x | gcc/testsuite/gcc.c-torture/execute/divconst-2.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc/testsuite/gcc.c-torture/execute/divconst-2.c b/gcc/testsuite/gcc.c-torture/execute/divconst-2.c deleted file mode 100755 index d3adaf3..0000000 --- a/gcc/testsuite/gcc.c-torture/execute/divconst-2.c +++ /dev/null @@ -1,12 +0,0 @@ -long -f (long x) -{ - return x / (-0x7fffffffL - 1L); -} - -main () -{ - if (f (-1L) != 0L || f (0x7fffffffL) != 0L || f (-0x7fffffffL - 1L) != 1l) - abort (); - exit (0); -} |