Skip to content

Commit c2e97b9

Browse files
committed
update misleading doc comment
1 parent fb33d54 commit c2e97b9

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/main.ml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,8 @@ let parseOneFile (fname: string) : C.file =
5959
if !Cilutil.printStages then ignore (E.log "Parsing %s\n" fname);
6060
let cil = F.parse fname () in
6161

62-
if (not (Feature.enabled "epicenter")) then (
63-
(* sm: remove unused temps to cut down on gcc warnings *)
64-
(* (Stats.time "usedVar" RmUnused.removeUnused cil); *)
65-
(* (trace "sm" (dprintf "removing unused temporaries\n")); *)
66-
(RmUnused.removeUnused cil)
67-
);
62+
(* remove unused temps and globals to cut down on gcc warnings *)
63+
RmUnused.removeUnused cil;
6864
cil
6965

7066
let processOneFile (cil: C.file) =

0 commit comments

Comments
 (0)