runtime: remove stray commas in assembly
Change-Id: I4dc97ff8111bdc5ca6e4e3af06aaf4f768031c68
Reviewed-on: https://go-review.googlesource.com/2473
Reviewed-by: Minux Ma <minux@golang.org>
diff --git a/src/runtime/asm_amd64.s b/src/runtime/asm_amd64.s
index 3199848..8547228 100644
--- a/src/runtime/asm_amd64.s
+++ b/src/runtime/asm_amd64.s
@@ -439,7 +439,7 @@
MOVL new+12(FP), CX
LOCK
CMPXCHGL CX, 0(BX)
- SETEQ , ret+16(FP)
+ SETEQ ret+16(FP)
RET
// bool runtime·cas64(uint64 *val, uint64 old, uint64 new)
@@ -456,7 +456,7 @@
MOVQ new+16(FP), CX
LOCK
CMPXCHGQ CX, 0(BX)
- SETEQ , ret+24(FP)
+ SETEQ ret+24(FP)
RET
TEXT runtime·casuintptr(SB), NOSPLIT, $0-25
@@ -484,7 +484,7 @@
MOVQ new+16(FP), CX
LOCK
CMPXCHGQ CX, 0(BX)
- SETEQ , ret+24(FP)
+ SETEQ ret+24(FP)
RET
// uint32 xadd(uint32 volatile *val, int32 delta)