Commit fd04f05f authored by Dmitriy Vyukov's avatar Dmitriy Vyukov

runtime: replace XOR AX, AX with MOV $0, AX

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5985048
parent 46675716
......@@ -323,7 +323,7 @@ TEXT runtime·cas64(SB), 7, $0
cas64_fail:
MOVL AX, 0(SI)
MOVL DX, 4(SI)
XORL AX, AX
MOVL $0, AX
RET
// bool casp(void **p, void *old, void *new)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment