diff options
| author | Russ Cox <rsc@golang.org> | 2008-12-19 03:13:39 -0800 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2008-12-19 03:13:39 -0800 |
| commit | da0a7d7b8f896bc2117ce488c4e245d626ef8aba (patch) | |
| tree | 9b40150f73466d543e7724ee596fb3c4ef094e72 /src/runtime/rt0_amd64.s | |
| parent | ba882f9940361e7f9f969fcc1cc613e735d38191 (diff) | |
| download | go-da0a7d7b8f896bc2117ce488c4e245d626ef8aba.tar.xz | |
malloc bug fixes.
use malloc by default.
free stacks.
R=r
DELTA=424 (333 added, 29 deleted, 62 changed)
OCL=21553
CL=21584
Diffstat (limited to 'src/runtime/rt0_amd64.s')
| -rw-r--r-- | src/runtime/rt0_amd64.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/rt0_amd64.s b/src/runtime/rt0_amd64.s index 61a768f7e2..61f9255a51 100644 --- a/src/runtime/rt0_amd64.s +++ b/src/runtime/rt0_amd64.s @@ -22,7 +22,7 @@ TEXT _rt0_amd64(SB),7,$-8 // create istack out of the given (operating system) stack - LEAQ (-1024+104)(SP), AX + LEAQ (-8192+104)(SP), AX MOVQ AX, 0(R15) // 0(R15) is stack limit (w 104b guard) MOVQ SP, 8(R15) // 8(R15) is base |
