diff options
Diffstat (limited to 'src/relooper/test_debug.txt')
-rw-r--r-- | src/relooper/test_debug.txt | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/src/relooper/test_debug.txt b/src/relooper/test_debug.txt index 4a42e642..eb33fdbc 100644 --- a/src/relooper/test_debug.txt +++ b/src/relooper/test_debug.txt @@ -115,13 +115,27 @@ int main() { // === Optimizing shapes === // Fusing Multiple to Simple ep -do { - if (ep -> LBB1) { +L1: do { + switch (the_var) { + ep -> LBB1 { LBB1 - if (!(LBB1 -> LBB2)) { + switch (the_var) { + LBB1 -> LBB2 { break; } + default: { + break L1; + } + } LBB2 + switch (the_var) { + default: { + } + } + break; + } + default: { + } } } while(0); LBB3 |