target-supports.exp (check_effective_target_hard_dfp): New.

* lib/target-supports.exp (check_effective_target_hard_dfp): New.
	* gcc.dg/dfp/convert-dfp-round.c: Skip for hard_dfp.
	* gcc.dg/dfp/fe-binop.c: Ditto.
	* gcc.dg/dfp/fe-convert-1.c: Ditto.

From-SVN: r142494
This commit is contained in:
Janis Johnson 2008-12-05 21:05:53 +00:00 committed by Janis Johnson
parent 13fa117156
commit 4f809983df
5 changed files with 19 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2008-12-05 Janis Johnson <janis187@us.ibm.com>
* lib/target-supports.exp (check_effective_target_hard_dfp): New.
* gcc.dg/dfp/convert-dfp-round.c: Skip for hard_dfp.
* gcc.dg/dfp/fe-binop.c: Ditto.
* gcc.dg/dfp/fe-convert-1.c: Ditto.
2008-12-05 Catherine Moore <clm@codesourcery.com>
* gcc-target/mips/mips-nonpic: New testsuite.

View File

@ -1,4 +1,5 @@
/* { dg-options "-O0 -std=gnu99" } */
/* { dg-skip-if "test is for emulation" { hard_dfp } { "*" } { "" } } */
/* N1150 5.2: Conversions among decimal floating types and between
decimal floating types and generic floating types.

View File

@ -1,4 +1,5 @@
/* { dg-options "-std=gnu99" } */
/* { dg-skip-if "test is for emulation" { hard_dfp } { "*" } { "" } } */
/* Touch tests that check for raising appropriate exceptions for binary
arithmetic operations on decimal float values. */

View File

@ -1,4 +1,5 @@
/* { dg-options "-std=gnu99" } */
/* { dg-skip-if "test is for emulation" { hard_dfp } { "*" } { "" } } */
/* Check that appropriate exceptions are raised for conversions involving
decimal float values. */

View File

@ -2656,3 +2656,12 @@ proc check_effective_target_pow10 { } {
}
} "-lm" ]
}
# Return 1 if current options generate DFP instructions, 0 otherwise.
proc check_effective_target_hard_dfp {} {
return [check_no_messages_and_pattern hard_dfp "!adddd3" assembly {
_Decimal64 x, y, z;
void foo (void) { z = x + y; }
}]
}