diff options
| author | Alon Zakai <alonzakai@gmail.com> | 2013-02-02 12:24:21 -0800 |
|---|---|---|
| committer | Alon Zakai <alonzakai@gmail.com> | 2013-02-02 12:24:21 -0800 |
| commit | 73313a7ef6ab384a3130e50f4904b8ae232cf4a5 (patch) | |
| tree | 03c12a015074df956b930ea38e9b7e9919b042c2 /src/relooper/test_debug.txt | |
| parent | 0b2a80ba3907b7e61b0877e2a1ec2a7454770d47 (diff) | |
always use labels in multiple blocks; emit no more one-time loops but rather labeled ifs1.2.4
Diffstat (limited to 'src/relooper/test_debug.txt')
| -rw-r--r-- | src/relooper/test_debug.txt | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/relooper/test_debug.txt b/src/relooper/test_debug.txt index 1c7d0508..02377fb7 100644 --- a/src/relooper/test_debug.txt +++ b/src/relooper/test_debug.txt @@ -83,14 +83,13 @@ int main() { // === Optimizing shapes === // Fusing Multiple to Simple ep -do { - if (ep -> LBB1) { - LBB1 - if (!(LBB1 -> LBB2)) { - break; - } - LBB2 +L1: +if (ep -> LBB1) { + LBB1 + if (!(LBB1 -> LBB2)) { + break L1; } -} while(0); + LBB2 +} LBB3 |
