mirror of
https://github.com/danog/ir.git
synced 2024-11-27 04:45:38 +01:00
17 lines
221 B
Plaintext
17 lines
221 B
Plaintext
|
--TEST--
|
||
|
001: IJMP - computed goto
|
||
|
--ARGS--
|
||
|
--emit-c
|
||
|
--CODE--
|
||
|
{
|
||
|
l_1 = START(l_2);
|
||
|
uintptr_t p = PARAM(l_1, "p", 1);
|
||
|
l_2 = IJMP(l_1, p);
|
||
|
}
|
||
|
--EXPECT--
|
||
|
void test(uintptr_t p)
|
||
|
{
|
||
|
uintptr_t d_1 = p;
|
||
|
goto *(void**)(d_1);
|
||
|
}
|