diff options
Diffstat (limited to 'gcc_arm/testsuite/gcc.c-torture/execute/941014-1.c')
-rwxr-xr-x | gcc_arm/testsuite/gcc.c-torture/execute/941014-1.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc_arm/testsuite/gcc.c-torture/execute/941014-1.c b/gcc_arm/testsuite/gcc.c-torture/execute/941014-1.c deleted file mode 100755 index 98db917..0000000 --- a/gcc_arm/testsuite/gcc.c-torture/execute/941014-1.c +++ /dev/null @@ -1,15 +0,0 @@ -int f (int a, int b) { } - -main () -{ - unsigned long addr1; - unsigned long addr2; - - addr1 = (unsigned long) &f; - addr1 += 5; - addr2 = 5 + (unsigned long) &f; - - if (addr1 != addr2) - abort (); - exit (0); -} |