aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Clements <austin@google.com>2014-10-30 16:44:42 -0400
committerAustin Clements <austin@google.com>2014-10-30 16:44:42 -0400
commitc24156bafe24a82ca4c182f289b1bff121ea72e0 (patch)
treeb15542c0df3dc017bd9048d13a586fc3cc1918e0
parent8a09639ae8b02317d990ef8e8c5929baf96659cd (diff)
downloadgo-c24156bafe24a82ca4c182f289b1bff121ea72e0.tar.gz
go-c24156bafe24a82ca4c182f289b1bff121ea72e0.zip
[dev.power64] runtime: fix a syntax error that slipped in to asm_power64x.s
Apparently I had already moved on to fixing another problem when I submitted CL 169790043. LGTM=dave R=rsc, dave CC=golang-codereviews https://golang.org/cl/165210043
-rw-r--r--src/runtime/asm_power64x.s2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/asm_power64x.s b/src/runtime/asm_power64x.s
index e1f8a84aff..ab2db061c2 100644
--- a/src/runtime/asm_power64x.s
+++ b/src/runtime/asm_power64x.s
@@ -711,7 +711,7 @@ test:
CMP R6, R7
BEQ loop
- MOVB $0, ret+24(FP)
+ MOVB R0, ret+24(FP)
RETURN
// eqstring tests whether two strings are equal.