Skip to content
Snippets Groups Projects
Commit 482db63b authored by Aaron Councilman's avatar Aaron Councilman
Browse files

Merge branch 'lift-dc-math-sched' into 'main'

Parse name of lift-dc-math path

See merge request !123
parents eed60d07 189e64f6
No related branches found
No related tags found
1 merge request!123Parse name of lift-dc-math path
Pipeline #201147 passed
...@@ -2,6 +2,7 @@ macro juno-setup!(X) { ...@@ -2,6 +2,7 @@ macro juno-setup!(X) {
//gvn(X); //gvn(X);
phi-elim(X); phi-elim(X);
dce(X); dce(X);
lift-dc-math(X);
} }
macro codegen-prep!(X) { macro codegen-prep!(X) {
infer-schedules(X); infer-schedules(X);
......
...@@ -110,6 +110,7 @@ impl FromStr for Appliable { ...@@ -110,6 +110,7 @@ impl FromStr for Appliable {
"ip-sroa" | "interprocedural-sroa" => { "ip-sroa" | "interprocedural-sroa" => {
Ok(Appliable::Pass(ir::Pass::InterproceduralSROA)) Ok(Appliable::Pass(ir::Pass::InterproceduralSROA))
} }
"lift-dc-math" => Ok(Appliable::Pass(ir::Pass::LiftDCMath)),
"outline" => Ok(Appliable::Pass(ir::Pass::Outline)), "outline" => Ok(Appliable::Pass(ir::Pass::Outline)),
"phi-elim" => Ok(Appliable::Pass(ir::Pass::PhiElim)), "phi-elim" => Ok(Appliable::Pass(ir::Pass::PhiElim)),
"predication" => Ok(Appliable::Pass(ir::Pass::Predication)), "predication" => Ok(Appliable::Pass(ir::Pass::Predication)),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment