ir/tests/Windows-x86_64/test_001.irt
Dmitry Stogov ebdeba9fff Add simple tests for Windows-x86_64
conv_004.irt and conv_010.irt fail with capstone 5 because of changes in movd/movq
2023-03-02 00:55:20 +03:00

22 lines
301 B
Plaintext
Executable File

--TEST--
001: EQ(AND(_,_), 0) -> TEST
--TARGET--
Windows-x86_64
--ARGS--
-S
--CODE--
{
int32_t c1 = 0;
int32_t c2 = 3;
l_1 = START(l_2);
int32_t x = PARAM(l_1, "x", 1);
int32_t d_1 = AND(x, c2);
bool d_2 = EQ(d_1, c1);
l_2 = RETURN(l_1, d_2);
}
--EXPECT--
test:
testl $3, %ecx
sete %al
retq