diff options
author | Robert Griesemer <gri@golang.org> | 2010-05-06 19:16:26 -0700 |
---|---|---|
committer | Robert Griesemer <gri@golang.org> | 2010-05-06 19:16:26 -0700 |
commit | d6b84ed3d53cf458a111d97c981bf323fb041e54 (patch) | |
tree | 0c87566dad06edc0558e556712cf76f6f7c755ce /src | |
parent | 5d283246b35eb665c21915e6e08871493f6751f6 (diff) | |
download | golang-d6b84ed3d53cf458a111d97c981bf323fb041e54.tar.gz |
fix build (typo in arith_386.s)
R=rsc
CC=golang-dev
http://codereview.appspot.com/1139042
Diffstat (limited to 'src')
-rw-r--r-- | src/pkg/big/arith_386.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/big/arith_386.s b/src/pkg/big/arith_386.s index 09904594c..7049906cc 100644 --- a/src/pkg/big/arith_386.s +++ b/src/pkg/big/arith_386.s @@ -136,7 +136,7 @@ X8b: MOVL $0, c+16(FP) // func shrVW(z, x *Word, s Word, n int) (c Word) TEXT ·shrVW(SB),7,$0 - MOVL n+24(FP), BP + MOVL n+12(FP), BP SUBL $1, BP // n-- JL X9b // n < 0 (n <= 0) |