diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2016-10-28 18:57:36 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2016-10-28 18:57:36 +0000 |
commit | 0dfeae289cc3c97f0f61d02c81df393e720badf9 (patch) | |
tree | d6041f0ff10892f0ab84f7c5bc2a8bc578976777 /libgo | |
parent | f0414b973f9b399bd726605943fbca39dea8ef77 (diff) | |
download | gcc-0dfeae289cc3c97f0f61d02c81df393e720badf9.zip gcc-0dfeae289cc3c97f0f61d02c81df393e720badf9.tar.gz gcc-0dfeae289cc3c97f0f61d02c81df393e720badf9.tar.bz2 |
re PR go/78143 (bootstrap broken in libgo on powerpc-linux-gnu)
PR go/78143
runtime: build lfstack_32bit.go on ppc
Missed a build tag. This is GCC PR 78143.
Reviewed-on: https://go-review.googlesource.com/32295
From-SVN: r241659
Diffstat (limited to 'libgo')
-rw-r--r-- | libgo/go/runtime/lfstack_32bit.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/runtime/lfstack_32bit.go b/libgo/go/runtime/lfstack_32bit.go index 6a99200..bc53b13 100644 --- a/libgo/go/runtime/lfstack_32bit.go +++ b/libgo/go/runtime/lfstack_32bit.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build 386 arm nacl armbe m68k mips mipsle mips64p32 mips64p32le mipso32 mipsn32 s390 sparc +// +build 386 arm nacl armbe m68k mips mipsle mips64p32 mips64p32le mipso32 mipsn32 ppc s390 sparc package runtime |