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
+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
/* { dg-final { scan-assembler-not "ext\t" } } */
void abort (void);
+void abort1 (void);
void exit (int);
typedef unsigned long long ulong64;
if (bar.a != 0x1)
abort ();
else if (!bar.c)
- abort ();
+ abort1 ();
else
exit (0);
}