From: ian Date: Fri, 21 Nov 2014 18:25:14 +0000 (+0000) Subject: * go.test/go-test.exp (go-set-goarch): Add case for ppc64le goarch X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2e13ca59834177b2f63c26a443442f2117505287;p=thirdparty%2Fgcc.git * go.test/go-test.exp (go-set-goarch): Add case for ppc64le goarch value for go testing. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@217942 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 9d6643bac2b6..fd91a5c64f70 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 25e405be5e5a..75dad8f6f78d 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-*-*" {