From bd7a7ec8fa019741ed0ca18d948d226489eec132 Mon Sep 17 00:00:00 2001 From: Andrew Pinski Date: Sat, 3 Nov 2012 19:22:08 +0000 Subject: [PATCH] octeon-bbit-3.c: Change the second call to abort to call abort1 so that cross jumping does not... 2012-11-03 Andrew Pinski * 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 --- gcc/testsuite/ChangeLog | 5 +++++ gcc/testsuite/gcc.target/mips/octeon-bbit-3.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 2f5d1f77dba..cfccf7f60c6 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2012-11-03 Andrew Pinski + + * 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 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 2726037bee1..7b73f43a1f4 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); } -- 2.34.1