20101011-1.c: Skip on bare-metal m68k.

2012-07-18  Julian Brown  <julian@codesourcery.com>
	    Sandra Loosemore <sandra@codesroucery.com>

	gcc/testsuite/
	* gcc.c-torture/execute/20101011-1.c: Skip on bare-metal m68k.

Co-Authored-By: Sandra Loosemore <sandra@codesourcery.com>

From-SVN: r189620
This commit is contained in:
Julian Brown 2012-07-18 16:27:37 +00:00 committed by Sandra Loosemore
parent cc5476cb49
commit 9df3cfeac2
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2012-07-18 Julian Brown <julian@codesourcery.com>
Sandra Loosemore <sandra@codesroucery.com>
* gcc.c-torture/execute/20101011-1.c: Skip on bare-metal m68k.
2012-07-18 Eric Botcazou <ebotcazou@adacore.com>
* gnat.dg/noreturn4.ad[sb]: New test.

View File

@ -32,6 +32,10 @@
/* Epiphany does not have hardware division, and the software implementation
has truly undefined behaviour for division by 0. */
# define DO_TEST 0
#elif defined (__m68k__) && !defined(__linux__)
/* Attempting to trap division-by-zero in this way isn't likely to work on
bare-metal m68k systems. */
# define DO_TEST 0
#else
# define DO_TEST 1
#endif