mirror of
https://github.com/danog/ir.git
synced 2024-11-27 04:45:38 +01:00
26 lines
386 B
Plaintext
26 lines
386 B
Plaintext
--TEST--
|
|
014: Register Allocation (SHL + SHL)
|
|
--TARGET--
|
|
x86
|
|
--ARGS--
|
|
-S
|
|
--CODE--
|
|
{
|
|
l_1 = START(l_4);
|
|
uint32_t x = PARAM(l_1, "x", 1);
|
|
uint32_t y = PARAM(l_1, "y", 2);
|
|
uint32_t ret = SHL(x, y);
|
|
uint32_t ret2 = SHL(x, ret);
|
|
l_4 = RETURN(l_1, ret2);
|
|
}
|
|
--EXPECT--
|
|
test:
|
|
movl 4(%esp), %eax
|
|
movl 8(%esp), %ecx
|
|
movl %eax, %edx
|
|
shll %cl, %edx
|
|
movl %edx, %ecx
|
|
shll %cl, %eax
|
|
retl
|
|
|