diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d976bd003bc4..cf14bb02a9fb 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2007-02-07 Hans-Peter Nilsson + + * lib/target-supports.exp (check_effective_target_simulator): New. + 2007-02-06 Zdenek Dvorak * gcc.dg/tree-ssa/loop-25.c: New test. diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp index c6b2a68b98d2..2c9d3c4622a1 100644 --- a/gcc/testsuite/lib/target-supports.exp +++ b/gcc/testsuite/lib/target-supports.exp @@ -2091,3 +2091,22 @@ proc check_effective_target_stdint_types { } { uint8_t e; uint16_t f; uint32_t g; uint64_t h; }] } + +# Return 1 if programs are intended to be run on a simulator +# (i.e. slowly) rather than hardware (i.e. fast). + +proc check_effective_target_simulator { } { + + # All "src/sim" simulators set this one. + if [board_info target exists is_simulator] { + return [board_info target is_simulator] + } + + # The "sid" simulators don't set that one, but at least they set + # this one. + if [board_info target exists slow_simulator] { + return [board_info target slow_simulator] + } + + return 0 +}