mirror of
https://github.com/mii443/wasmer.git
synced 2025-08-24 01:09:26 +00:00
fix(compiler/llvm): disable invalid opt passes
This commit is contained in:
@ -237,12 +237,12 @@ impl FuncTranslator {
|
||||
|
||||
passes.push("sccp");
|
||||
passes.push("early-cse");
|
||||
passes.push("deadargelim");
|
||||
//passes.push("deadargelim");
|
||||
passes.push("adce");
|
||||
passes.push("sroa");
|
||||
passes.push("aggressive-instcombine");
|
||||
passes.push("jump-threading");
|
||||
passes.push("ipsccp");
|
||||
//passes.push("ipsccp");
|
||||
passes.push("simplifycfg");
|
||||
passes.push("reassociate");
|
||||
passes.push("loop-rotate");
|
||||
|
Reference in New Issue
Block a user