* lib/target-supports.exp (check_effective_target_simulator): New.

From-SVN: r121683
This commit is contained in:
Hans-Peter Nilsson 2007-02-07 10:08:50 +00:00 committed by Hans-Peter Nilsson
parent ed445ba30e
commit 3920f1fd1d
2 changed files with 23 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2007-02-07 Hans-Peter Nilsson <hp@axis.com>
* lib/target-supports.exp (check_effective_target_simulator): New.
2007-02-06 Zdenek Dvorak <dvorakz@suse.cz>
* gcc.dg/tree-ssa/loop-25.c: New test.

View File

@ -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
}