mirror of
https://github.com/danog/ir.git
synced 2024-11-27 04:45:38 +01:00
19 lines
231 B
Plaintext
19 lines
231 B
Plaintext
--TEST--
|
|
005: mul function
|
|
--TARGET--
|
|
aarch64
|
|
--ARGS--
|
|
-S
|
|
--CODE--
|
|
{
|
|
uint32_t c = 2;
|
|
l_1 = START(l_4);
|
|
uint16_t x = PARAM(l_1, "x", 1);
|
|
uint16_t ret = MUL(c, x);
|
|
l_4 = RETURN(l_1, ret);
|
|
}
|
|
--EXPECT--
|
|
test:
|
|
add w0, w0, w0
|
|
ret
|