Commit 3920f1fd by Hans-Peter Nilsson Committed by Hans-Peter Nilsson

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

From-SVN: r121683
parent ed445ba3
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.
......@@ -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
}
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