Commit 9df3cfea by Julian Brown Committed by Sandra Loosemore

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
parent cc5476cb
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.
......
......@@ -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
......
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