delve/_fixtures/xmm0print/main.s
Alessandro Arzilli ac81269eef
proc: fix prettyprint for register components with large values (#3022)
Fix pretty printing for CPU register components (created with the
XMM0.uintN syntax) while using format strings
Also fixes printing large literal constants with format strings.

Fixes #3020
2022-06-02 10:16:32 -07:00

10 lines
178 B
ArmAsm

#include "textflag.h"
TEXT ·VPSLLQ36(SB), NOSPLIT, $0-16
MOVQ src+0(FP), AX
MOVQ dst+8(FP), BX
VMOVDQU (AX), Y0
VPSLLQ $36, Y0, Y0
VMOVDQU Y0, (BX)
RET