Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
asterite committed Dec 2, 2024
1 parent e066da7 commit affd9cd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions compiler/noirc_evaluator/src/ssa/opt/constant_folding.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1187,15 +1187,15 @@ mod test {
v2 = lt u32 1000, v0
jmpif v2 then: b1, else: b2
b1():
v4 = add v0, u32 1
v4 = shl v0, u32 1
v5 = lt v0, v4
constrain v5 == u1 1
jmp b2()
b2():
v7 = lt u32 1000, v0
jmpif v7 then: b3, else: b4
b3():
v8 = add v0, u32 1
v8 = shl v0, u32 1
v9 = lt v0, v8
constrain v9 == u1 1
jmp b4()
Expand All @@ -1213,10 +1213,10 @@ mod test {
brillig(inline) fn main f0 {
b0(v0: u32):
v2 = lt u32 1000, v0
v4 = add v0, u32 1
v4 = shl v0, u32 1
jmpif v2 then: b1, else: b2
b1():
v5 = add v0, u32 1
v5 = shl v0, u32 1
v6 = lt v0, v5
constrain v6 == u1 1
jmp b2()
Expand Down

0 comments on commit affd9cd

Please sign in to comment.