Commit f4485784 authored by Dmitriy Vyukov's avatar Dmitriy Vyukov

runtime: please vet

The current code is correct, but vet does not understand it:
asm_amd64.s:963: [amd64] invalid MOVL of ret+0(FP); int64 is 8-byte value
asm_amd64.s:964: [amd64] invalid offset ret+4(FP); expected ret+0(FP)

LGTM=minux
R=golang-codereviews, minux
CC=golang-codereviews
https://golang.org/cl/125200044
parent 9368d6cc
...@@ -955,8 +955,9 @@ TEXT runtime·cputicks(SB),NOSPLIT,$0-0 ...@@ -955,8 +955,9 @@ TEXT runtime·cputicks(SB),NOSPLIT,$0-0
TEXT runtime·gocputicks(SB),NOSPLIT,$0-8 TEXT runtime·gocputicks(SB),NOSPLIT,$0-8
RDTSC RDTSC
MOVL AX, ret+0(FP) SHLQ $32, DX
MOVL DX, ret+4(FP) ADDQ DX, AX
MOVQ AX, ret+0(FP)
RET RET
TEXT runtime·stackguard(SB),NOSPLIT,$0-16 TEXT runtime·stackguard(SB),NOSPLIT,$0-16
......
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