From 6d8325a701e7030db264a5d0596835fe4371ff5f Mon Sep 17 00:00:00 2001 From: Lynn Boger Date: Fri, 21 Nov 2014 12:25:14 -0600 Subject: 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 --- gcc/testsuite/go.test/go-test.exp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'gcc/testsuite/go.test') 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-*-*" { -- cgit v1.1