We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2760ba commit 0ae22a5Copy full SHA for 0ae22a5
src/frontc/cabs2cil.ml
@@ -856,7 +856,7 @@ module BlockChunk =
856
in
857
(* must mutate stmts in order to not break refs (for gotos) *)
858
let rec doStmt ~first s: unit =
859
- let doLoc = if first then doLoc else fun x -> x in
+ let doLoc = if first then fun x -> x else doLoc in
860
s.skind <- match s.skind with
861
| Instr xs -> Instr (doInstrs ~first xs)
862
| Return (e, loc) -> Return (e, doLoc loc)
0 commit comments