Skip to content

Commit

Permalink
increase opt level
Browse files Browse the repository at this point in the history
  • Loading branch information
ainozaki committed Jan 19, 2024
1 parent 6fa5836 commit c6660c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ fn get_host_target_machine() -> Result<targets::TargetMachine, String> {
let cpu = TargetMachine::get_host_cpu_name();
let features = TargetMachine::get_host_cpu_features();

let opt_level = inkwell::OptimizationLevel::Default;
let opt_level = inkwell::OptimizationLevel::Aggressive;
let reloc_mode = RelocMode::Default;
let code_model = CodeModel::Default;

Expand Down

0 comments on commit c6660c6

Please sign in to comment.