* lib/target-supports.exp (check_weak_available): Return true for AIX.

From-SVN: r202227
This commit is contained in:
David Edelsohn 2013-09-03 16:25:15 +00:00 committed by David Edelsohn
parent 0d9b4f5c07
commit d7fd3fde96
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2013-09-03 David Edelsohn <dje.gcc@gmail.com>
* lib/target-supports.exp (check_weak_available): Return true for AIX.
2013-09-03 Jan Hubicka <jh@suse.cz>
* g++.dg/ipa/devirt-15.C: Fix testcase.

View File

@ -226,6 +226,12 @@ proc check_weak_available { } {
return 1
}
# All AIX targets should support it
if { [istarget *-*-aix*] } {
return 1
}
# All solaris2 targets should support it
if { [istarget *-*-solaris2*] } {