Commit f6c23342 by Jason Merrill Committed by Jason Merrill

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

From-SVN: r195338
parent e8bb7d68
2013-01-21 Jason Merrill <jason@redhat.com>
* lib/target-supports.exp (check_effective_target_alias): New.
2013-01-20 Jack Howarth <howarth@bromo.med.uc.edu>
PR debug/53235
......
......@@ -354,6 +354,16 @@ proc check_alias_available { } {
return $alias_available_saved
}
# Returns 1 if the target toolchain supports strong aliases, 0 otherwise.
proc check_effective_target_alias { } {
if { [check_alias_available] < 2 } {
return 0
} else {
return 1
}
}
# Returns 1 if the target toolchain supports ifunc, 0 otherwise.
proc check_ifunc_available { } {
......
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