Skip to content

Commit

Permalink
bump threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-schwarz committed Oct 1, 2023
1 parent 86cec52 commit df6a5fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontc/cabs2cil.ml
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ let alphaConvertVarAndAddToEnv (addtoenv: bool) (vi: varinfo) : varinfo =
(* Store all locals in the slocals (in reversed order). We'll reverse them
and take out the formals at the end of the function *)
if not vi.vglob then(
if List.length !scopes > 1 then
if List.length !scopes > 2 then
newvi.vattr <- Attr("goblint_cil_nested", []) :: newvi.vattr;
!currentFunctionFDEC.slocals <- newvi :: !currentFunctionFDEC.slocals)
;
Expand Down

0 comments on commit df6a5fc

Please sign in to comment.