diff options
author | Andrew Pinski <apinski@cavium.com> | 2012-11-03 19:22:08 +0000 |
---|---|---|
committer | Andrew Pinski <pinskia@gcc.gnu.org> | 2012-11-03 12:22:08 -0700 |
commit | bd7a7ec8fa019741ed0ca18d948d226489eec132 (patch) | |
tree | 801fd416561a8e3182967eddfba3c57a3868eef9 | |
parent | 2588b26e0e0374bccd928e2d102e81a9e334fc0b (diff) | |
download | gcc-bd7a7ec8fa019741ed0ca18d948d226489eec132.zip gcc-bd7a7ec8fa019741ed0ca18d948d226489eec132.tar.gz gcc-bd7a7ec8fa019741ed0ca18d948d226489eec132.tar.bz2 |
octeon-bbit-3.c: Change the second call to abort to call abort1 so that cross jumping does not...
2012-11-03 Andrew Pinski <apinski@cavium.com>
* gcc.target/mips/octeon-bbit-3.c: Change the second call to abort to
call abort1 so that cross jumping does not happen.
From-SVN: r193125
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/mips/octeon-bbit-3.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 2f5d1f7..cfccf7f 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2012-11-03 Andrew Pinski <apinski@cavium.com> + + * gcc.target/mips/octeon-bbit-3.c: Change the second call to abort to + call abort1 so that cross jumping does not happen. + 2012-11-03 Oleg Endo <olegendo@gcc.gnu.org> PR target/51244 diff --git a/gcc/testsuite/gcc.target/mips/octeon-bbit-3.c b/gcc/testsuite/gcc.target/mips/octeon-bbit-3.c index 2726037..7b73f43 100644 --- a/gcc/testsuite/gcc.target/mips/octeon-bbit-3.c +++ b/gcc/testsuite/gcc.target/mips/octeon-bbit-3.c @@ -18,6 +18,7 @@ /* { dg-final { scan-assembler-not "ext\t" } } */ void abort (void); +void abort1 (void); void exit (int); typedef unsigned long long ulong64; @@ -39,7 +40,7 @@ f () if (bar.a != 0x1) abort (); else if (!bar.c) - abort (); + abort1 (); else exit (0); } |