aboutsummaryrefslogtreecommitdiffstats
path: root/test/libyul/yulOptimizerTests/blockFlattener/for_stmt.yul
blob: 07bd5c18f33bb429ae4b314b397a5042f2fe6094 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
    for { let a := 1 } iszero(eq(a, 10)) { a := add(a, 1) } {
        a := add(a, 1)
    }
}
// ----
// blockFlattener
// {
//     for {
//         let a := 1
//     }
//     iszero(eq(a, 10))
//     {
//         a := add(a, 1)
//     }
//     {
//         a := add(a, 1)
//     }
// }