diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 0477f3650c7..935b3c351af 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2013-09-03 David Edelsohn + + * lib/target-supports.exp (check_weak_available): Return true for AIX. + 2013-09-03 Jan Hubicka * g++.dg/ipa/devirt-15.C: Fix testcase. diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp index bcf060f7fac..0905821587b 100644 --- a/gcc/testsuite/lib/target-supports.exp +++ b/gcc/testsuite/lib/target-supports.exp @@ -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*] } {