* lib/target-supports.exp
(check_effective_target_sync_long_long_runtime): Use check_effective_target_lp64 instead of check_effective_target_powerpc64 for powerpc targets. From-SVN: r188399
This commit is contained in:
parent
a04739cb17
commit
d3843c6726
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2012-06-11 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* lib/target-supports.exp
|
||||
(check_effective_target_sync_long_long_runtime): Use
|
||||
check_effective_target_lp64 instead of
|
||||
check_effective_target_powerpc64 for powerpc targets.
|
||||
|
||||
2012-06-11 Oleg Endo <olegendo@gcc.gnu.org>
|
||||
|
||||
PR target/53511
|
||||
|
|
|
@ -3796,7 +3796,7 @@ proc check_effective_target_sync_long_long_runtime { } {
|
|||
&& [check_effective_target_lp64]
|
||||
&& [check_effective_target_ultrasparc_hw]) } {
|
||||
return 1
|
||||
} elseif { [check_effective_target_powerpc64] } {
|
||||
} elseif { [istarget powerpc*-*-*] && [check_effective_target_lp64] } {
|
||||
return 1
|
||||
} else {
|
||||
return 0
|
||||
|
|
Loading…
Add table
Reference in a new issue