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

Parse name of lift-dc-math path

parent eed60d07
No related branches found
No related tags found
1 merge request!123Parse name of lift-dc-math path
Pipeline #201146 passed
......@@ -2,6 +2,7 @@ macro juno-setup!(X) {
//gvn(X);
phi-elim(X);
dce(X);
lift-dc-math(X);
}
macro codegen-prep!(X) {
infer-schedules(X);
......
......@@ -110,6 +110,7 @@ impl FromStr for Appliable {
"ip-sroa" | "interprocedural-sroa" => {
Ok(Appliable::Pass(ir::Pass::InterproceduralSROA))
}
"lift-dc-math" => Ok(Appliable::Pass(ir::Pass::LiftDCMath)),
"outline" => Ok(Appliable::Pass(ir::Pass::Outline)),
"phi-elim" => Ok(Appliable::Pass(ir::Pass::PhiElim)),
"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