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
This commit is contained in:
parent
6f7ccafa91
commit
6d8325a701
2 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2014-11-21 Lynn Boger <laboger@linux.vnet.ibm.com>
|
||||||
|
|
||||||
|
* go.test/go-test.exp (go-set-goarch): Add case for ppc64le goarch
|
||||||
|
value for go testing.
|
||||||
|
|
||||||
2014-11-21 Jiong Wang <jiong.wang@arm.com>
|
2014-11-21 Jiong Wang <jiong.wang@arm.com>
|
||||||
|
|
||||||
* gcc.target/aarch64/vect_ctz_1.c: New testcase.
|
* gcc.target/aarch64/vect_ctz_1.c: New testcase.
|
||||||
|
|
|
@ -241,7 +241,11 @@ proc go-set-goarch { } {
|
||||||
if [check_effective_target_ilp32] {
|
if [check_effective_target_ilp32] {
|
||||||
set goarch "ppc"
|
set goarch "ppc"
|
||||||
} else {
|
} else {
|
||||||
set goarch "ppc64"
|
if [istarget "powerpc64le-*-*"] {
|
||||||
|
set goarch "ppc64le"
|
||||||
|
} else {
|
||||||
|
set goarch "ppc64"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"s390-*-*" {
|
"s390-*-*" {
|
||||||
|
|
Loading…
Add table
Reference in a new issue