mirror of
https://github.com/danog/ir.git
synced 2024-12-02 17:55:40 +01:00
7058c41411
This also fixes possbile incorrect register-allocation/code-generation for SHIFT instuction on x86[_64]
20 lines
253 B
Plaintext
Executable File
20 lines
253 B
Plaintext
Executable File
--TEST--
|
|
005: mul function
|
|
--TARGET--
|
|
Windows-x86_64
|
|
--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:
|
|
movw %cx, %ax
|
|
addw %ax, %ax
|
|
retq
|