Changeset 2787 for driver/compiler.ml
- Timestamp:
- Mar 6, 2013, 3:48:14 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
driver/compiler.ml
r2778 r2787 27 27 let labelled = output.Extracted.Compiler.c_labelled_clight in 28 28 let l_costmap = output.Extracted.Compiler.c_clight_cost_map in 29 let s_costmap = output.Extracted.Compiler.c_stack_cost in 29 30 let style = 30 31 match try Sys.argv.(2) with _ -> "instrumented" with 31 32 | "plain" -> Cost_plain 32 | "numbered" -> Cost_numbered l_costmap33 | "instrumented" -> Cost_instrumented l_costmap33 | "numbered" -> Cost_numbered (l_costmap,s_costmap) 34 | "instrumented" -> Cost_instrumented (l_costmap,s_costmap) 34 35 | x -> failwith ("I have no idea what " ^ x ^ " means") 35 36 in
Note: See TracChangeset
for help on using the changeset viewer.