diff options
author | Austin Clements <austin@google.com> | 2014-10-30 16:44:42 -0400 |
---|---|---|
committer | Austin Clements <austin@google.com> | 2014-10-30 16:44:42 -0400 |
commit | 905f3e7cf489f05ae3764cabda3cd96684e3445f (patch) | |
tree | 57b883efdeb3095fd177803aa5e7c00d0b20aed7 /src/runtime/asm_power64x.s | |
parent | 4567570995415e71982d7baa9c199266ec4d7ee7 (diff) | |
download | go-905f3e7cf489f05ae3764cabda3cd96684e3445f.tar.gz |
[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://codereview.appspot.com/165210043
Diffstat (limited to 'src/runtime/asm_power64x.s')
-rw-r--r-- | src/runtime/asm_power64x.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/asm_power64x.s b/src/runtime/asm_power64x.s index e1f8a84af..ab2db061c 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. |