diff options
| author | Michael Hudson-Doyle <michael.hudson@canonical.com> | 2015-10-30 12:36:08 +1300 |
|---|---|---|
| committer | Michael Hudson-Doyle <michael.hudson@canonical.com> | 2015-11-12 22:32:37 +0000 |
| commit | c83c8065355c7ccef33eb0ebc870bf648d3d89cb (patch) | |
| tree | 8536676110e344ef3b9105845f9c0bf336f2a64f /src/runtime/internal/sys | |
| parent | c1b6e392f56a35d4e59e1e938c68e4c5db4fd919 (diff) | |
| download | go-c83c8065355c7ccef33eb0ebc870bf648d3d89cb.tar.xz | |
cmd/internal/obj, cmd/link, runtime: use a larger stack frame on ppc64
The larger stack frames causes the nosplit stack to overflow so the next change
increases the stackguard.
Change-Id: Ib2b4f24f0649eb1d13e3a58d265f13d1b6cc9bf9
Reviewed-on: https://go-review.googlesource.com/15964
Reviewed-by: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src/runtime/internal/sys')
| -rw-r--r-- | src/runtime/internal/sys/arch_ppc64.go | 2 | ||||
| -rw-r--r-- | src/runtime/internal/sys/arch_ppc64le.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/internal/sys/arch_ppc64.go b/src/runtime/internal/sys/arch_ppc64.go index fca31c28d0..3aa07e1f56 100644 --- a/src/runtime/internal/sys/arch_ppc64.go +++ b/src/runtime/internal/sys/arch_ppc64.go @@ -12,7 +12,7 @@ const ( PCQuantum = 4 Int64Align = 8 HugePageSize = 0 - MinFrameSize = 8 + MinFrameSize = 32 ) type Uintreg uint64 diff --git a/src/runtime/internal/sys/arch_ppc64le.go b/src/runtime/internal/sys/arch_ppc64le.go index 586a954a0c..0f02f0bf3c 100644 --- a/src/runtime/internal/sys/arch_ppc64le.go +++ b/src/runtime/internal/sys/arch_ppc64le.go @@ -12,7 +12,7 @@ const ( PCQuantum = 4 Int64Align = 8 HugePageSize = 0 - MinFrameSize = 8 + MinFrameSize = 32 ) type Uintreg uint64 |
