Commit bd7a7ec8 by Andrew Pinski Committed by Andrew Pinski

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
parent 2588b26e
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
......
......@@ -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);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment