mirror of
https://github.com/danog/ir.git
synced 2024-11-27 04:45:38 +01:00
59 lines
1.0 KiB
Plaintext
59 lines
1.0 KiB
Plaintext
--TEST--
|
|
SWITCH 003
|
|
--ARGS--
|
|
-S
|
|
--CODE--
|
|
{
|
|
uintptr_t c_1 = 0;
|
|
bool c_2 = 0;
|
|
bool c_3 = 1;
|
|
int64_t c_4 = 8589934592;
|
|
int64_t c_5 = 8589934593;
|
|
int64_t c_6 = 8589935594;
|
|
int64_t c_7 = 8589934595;
|
|
l_1 = START(l_16);
|
|
int64_t d_2 = PARAM(l_1, "z", 0);
|
|
l_4 = SWITCH(l_1, d_2);
|
|
l_5 = CASE_VAL(l_4, c_4);
|
|
int64_t x_1 = COPY(c_4);
|
|
l_6 = END(l_5);
|
|
l_7 = CASE_VAL(l_4, c_5);
|
|
int64_t x_2 = COPY(c_5);
|
|
l_8 = END(l_7);
|
|
l_9 = CASE_VAL(l_4, c_6);
|
|
int64_t x_3 = COPY(c_6);
|
|
l_10 = END(l_9);
|
|
l_11 = CASE_DEFAULT(l_4);
|
|
int64_t x_4 = COPY(c_7);
|
|
l_12 = END(l_11);
|
|
l_13 = MERGE/4(l_6, l_8, l_10, l_12);
|
|
int64_t ret = PHI/4(l_13, x_1, x_2, x_3, x_4);
|
|
l_16 = RETURN(l_13, ret);
|
|
}
|
|
--EXPECT--
|
|
test:
|
|
movabsq $0x200000000, %rax
|
|
cmpq %rax, %rdi
|
|
je .L1
|
|
movabsq $0x200000001, %rax
|
|
cmpq %rax, %rdi
|
|
je .L2
|
|
movabsq $0x2000003ea, %rax
|
|
cmpq %rax, %rdi
|
|
je .L3
|
|
jmp .L4
|
|
.L1:
|
|
movabsq $0x200000000, %rax
|
|
jmp .L5
|
|
.L2:
|
|
movabsq $0x200000001, %rax
|
|
jmp .L5
|
|
.L3:
|
|
movabsq $0x2000003ea, %rax
|
|
jmp .L5
|
|
.L4:
|
|
movabsq $0x200000003, %rax
|
|
.L5:
|
|
retq
|
|
|