diff options
author | Lynn Boger <laboger@linux.vnet.ibm.com> | 2014-11-21 12:25:14 -0600 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2014-11-21 18:25:14 +0000 |
commit | 6d8325a701e7030db264a5d0596835fe4371ff5f (patch) | |
tree | a3abda45433f8f204989d9ff7611773ec1188894 /gcc/testsuite/go.test | |
parent | 6f7ccafa919acbae98e82871e122fb39593cc52a (diff) | |
download | gcc-6d8325a701e7030db264a5d0596835fe4371ff5f.zip gcc-6d8325a701e7030db264a5d0596835fe4371ff5f.tar.gz gcc-6d8325a701e7030db264a5d0596835fe4371ff5f.tar.bz2 |
go-test.exp (go-set-goarch): Add case for ppc64le goarch value for go testing.
* go.test/go-test.exp (go-set-goarch): Add case for ppc64le goarch
value for go testing.
From-SVN: r217942
Diffstat (limited to 'gcc/testsuite/go.test')
-rw-r--r-- | gcc/testsuite/go.test/go-test.exp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/testsuite/go.test/go-test.exp b/gcc/testsuite/go.test/go-test.exp index 25e405b..75dad8f 100644 --- a/gcc/testsuite/go.test/go-test.exp +++ b/gcc/testsuite/go.test/go-test.exp @@ -241,7 +241,11 @@ proc go-set-goarch { } { if [check_effective_target_ilp32] { set goarch "ppc" } else { - set goarch "ppc64" + if [istarget "powerpc64le-*-*"] { + set goarch "ppc64le" + } else { + set goarch "ppc64" + } } } "s390-*-*" { |