mirror of
https://github.com/danog/ir.git
synced 2024-11-26 20:34:53 +01:00
ebdeba9fff
conv_004.irt and conv_010.irt fail with capstone 5 because of changes in movd/movq
22 lines
301 B
Plaintext
Executable File
22 lines
301 B
Plaintext
Executable File
--TEST--
|
|
001: EQ(ADD(_,_), 0) -> SETCC
|
|
--TARGET--
|
|
Windows-x86_64
|
|
--ARGS--
|
|
-S
|
|
--CODE--
|
|
{
|
|
int32_t c1 = 0;
|
|
int32_t c2 = 1;
|
|
l_1 = START(l_2);
|
|
int32_t x = PARAM(l_1, "x", 1);
|
|
int32_t d_1 = ADD(x, c2);
|
|
bool d_2 = EQ(d_1, c1);
|
|
l_2 = RETURN(l_1, d_2);
|
|
}
|
|
--EXPECT--
|
|
test:
|
|
addl $1, %ecx
|
|
sete %al
|
|
retq
|