Skip to content

Commit

Permalink
Remove unnecessary paranetheses.
Browse files Browse the repository at this point in the history
  • Loading branch information
jerhard committed Nov 23, 2023
1 parent f262386 commit 5be07e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/autoTune.ml
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ let rec setCongruenceRecursive fd depth neigbourFunction =
FunctionSet.iter
(fun vinfo ->
print_endline (" " ^ vinfo.vname);
match (Cilfacade.find_varinfo_fundec vinfo) with
match Cilfacade.find_varinfo_fundec vinfo with
| fd -> setCongruenceRecursive fd (depth -1) neigbourFunction
| exception Not_found -> () (* Happens for __goblint_bounded*)
| exception Not_found -> () (* Happens for __goblint_bounded *)
)
(FunctionSet.filter (*for extern and builtin functions there is no function definition in CIL*)
(fun x -> not (isExtern x.vstorage || BatString.starts_with x.vname "__builtin"))
Expand Down

0 comments on commit 5be07e5

Please sign in to comment.