Skip to content

Commit

Permalink
re-enable optimizations by default
Browse files Browse the repository at this point in the history
  • Loading branch information
simvux committed Oct 26, 2024
1 parent 7c6b233 commit 4f15420
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lumina-compiler/src/lir/ssa/opts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use crate::lir::{mono::Types, Block, ControlFlow, Entry, Function, MonoFunc, Val
use lumina_collections::{Map, MapKey};
use tracing::{info, info_span};

pub const ENABLE_OPTS: bool = false;
pub const ENABLE_OPTS: bool = true;

impl LIR {
pub fn perform_optimizations(&mut self) {
Expand Down

0 comments on commit 4f15420

Please sign in to comment.