From: Lynn Boger Date: Fri, 21 Nov 2014 18:25:14 +0000 (-0600) Subject: go-test.exp (go-set-goarch): Add case for ppc64le goarch value for go testing. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6d8325a701e7030db264a5d0596835fe4371ff5f;p=gcc.git 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 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 9d6643bac2b..fd91a5c64f7 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2014-11-21 Lynn Boger + + * go.test/go-test.exp (go-set-goarch): Add case for ppc64le goarch + value for go testing. + 2014-11-21 Jiong Wang * gcc.target/aarch64/vect_ctz_1.c: New testcase. diff --git a/gcc/testsuite/go.test/go-test.exp b/gcc/testsuite/go.test/go-test.exp index 25e405be5e5..75dad8f6f78 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-*-*" {