mirror of
https://github.com/danog/ir.git
synced 2024-11-26 20:34:53 +01:00
22 lines
322 B
Plaintext
22 lines
322 B
Plaintext
--TEST--
|
|
008: Memory update (LOAD/STORE)
|
|
--TARGET--
|
|
x86
|
|
--ARGS--
|
|
-S
|
|
--CODE--
|
|
{
|
|
int32_t c = 0x80;
|
|
l_1 = START(l_4);
|
|
uintptr_t p = PARAM(l_1, "p", 1);
|
|
int32_t z, l_2 = LOAD(l_1, p);
|
|
int32_t ret = AND(z, c);
|
|
l_3 = STORE(l_2, p, ret);
|
|
l_4 = RETURN(l_3);
|
|
}
|
|
--EXPECT--
|
|
test:
|
|
movl 4(%esp), %eax
|
|
andl $0x80, (%eax)
|
|
retl
|