aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/6l
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2012-09-24 20:57:01 -0400
committerRuss Cox <rsc@golang.org>2012-09-24 20:57:01 -0400
commit10ea6519e4e61d47385ca7b7f60ca96856271de7 (patch)
tree97bbc154b3bb2b0d5807a359f31a7c72550bee5d /src/cmd/6l
parentf8c58373e53a9399a9ea75f744c717fc59be3839 (diff)
downloadgo-10ea6519e4e61d47385ca7b7f60ca96856271de7.tar.xz
build: make int 64 bits on amd64
The assembly offsets were converted mechanically using code.google.com/p/rsc/cmd/asmlint. The instruction changes were done by hand. Fixes #2188. R=iant, r, bradfitz, remyoudompheng CC=golang-dev https://golang.org/cl/6550058
Diffstat (limited to 'src/cmd/6l')
-rw-r--r--src/cmd/6l/l.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/6l/l.h b/src/cmd/6l/l.h
index 408107f2cd..c2ae007790 100644
--- a/src/cmd/6l/l.h
+++ b/src/cmd/6l/l.h
@@ -41,7 +41,7 @@ enum
{
thechar = '6',
PtrSize = 8,
- IntSize = 4,
+ IntSize = 8,
// Loop alignment constants:
// want to align loop entry to LoopAlign-byte boundary,