aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2012-02-22 17:36:25 -0500
committerRuss Cox <rsc@golang.org>2012-02-22 17:36:25 -0500
commit123130f7894993587d3049b90d93c2319e099a4b (patch)
tree4e1dc4652c4ca8cddcc4462e1d4e4067a5dbbf9e
parenta5bc16d619657a243ea55c2ebefc9a2f672ab2de (diff)
downloadgo-123130f7894993587d3049b90d93c2319e099a4b.tar.gz
go-123130f7894993587d3049b90d93c2319e099a4b.zip
5a: fix same arm bug
R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/5689073
-rw-r--r--src/cmd/5a/a.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/5a/a.y b/src/cmd/5a/a.y
index 9a0efd5e06..512fb5a952 100644
--- a/src/cmd/5a/a.y
+++ b/src/cmd/5a/a.y
@@ -217,7 +217,7 @@ inst:
*/
| LTYPEB name ',' imm
{
- outcode($1, Always, &$2, NREG, &$4);
+ outcode($1, Always, &$2, 0, &$4);
}
| LTYPEB name ',' con ',' imm
{