diff options
author | Ian Lance Taylor <iant@google.com> | 2018-10-03 21:03:50 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2018-10-03 21:03:50 +0000 |
commit | bbfc3ce55ff26384400c1eb122dbbe5bb6f84866 (patch) | |
tree | 9f682169226c297aa579f39b255161df5b465fea | |
parent | af8096fc2b6ee76426b021a2657291dfc62ca933 (diff) | |
download | gcc-bbfc3ce55ff26384400c1eb122dbbe5bb6f84866.zip gcc-bbfc3ce55ff26384400c1eb122dbbe5bb6f84866.tar.gz gcc-bbfc3ce55ff26384400c1eb122dbbe5bb6f84866.tar.bz2 |
* go.test/go-test.exp (go-set-goarch): Use amd64p32 on x32.
From-SVN: r264825
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/go.test/go-test.exp | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index c06842d..14d24f0 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2018-10-03 Ian Lance Taylor <iant@google.com> + + * go.test/go-test.exp (go-set-goarch): Use amd64p32 on x32. + 2018-10-03 Martin Sebor <msebor@redhat.com> * gcc.dg/warn-sprintf-no-nul.c: New test. diff --git a/gcc/testsuite/go.test/go-test.exp b/gcc/testsuite/go.test/go-test.exp index cab0d0e..db39407 100644 --- a/gcc/testsuite/go.test/go-test.exp +++ b/gcc/testsuite/go.test/go-test.exp @@ -203,6 +203,8 @@ proc go-set-goarch { } { "x86_64-*-*" { if [check_effective_target_ia32] { set goarch "386" + } elseif [check_effective_target_x32] { + set goarch "amd64p32" } else { set goarch "amd64" } |