From: Austin Clements Date: Thu, 30 Oct 2014 20:44:42 +0000 (-0400) Subject: [dev.power64] runtime: fix a syntax error that slipped in to asm_power64x.s X-Git-Tag: go1.5beta1~2684^2~11^2~22 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c24156bafe24a82ca4c182f289b1bff121ea72e0;p=gostls13.git [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 --- 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.