ir/tests/aarch64/rol_004.irt
2022-11-08 11:56:22 +03:00

21 lines
257 B
Plaintext

--TEST--
004: rol function
--TARGET--
aarch64
--ARGS--
-S
--CODE--
{
int32_t c = 17;
l_1 = START(l_4);
int32_t x = PARAM(l_1, "x", 1);
int32_t ret = ROL(c, x);
l_4 = RETURN(l_1, ret);
}
--EXPECT--
test:
movz w2, #0x11
neg w1, w0
ror w0, w2, w1
ret