aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/lib/target-supports.exp6
2 files changed, 10 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 0477f36..935b3c3 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -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.
diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp
index bcf060f..0905821 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*] } {