summaryrefslogtreecommitdiff
path: root/src/passes/FuncCastEmulation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/passes/FuncCastEmulation.cpp')
-rw-r--r--src/passes/FuncCastEmulation.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/passes/FuncCastEmulation.cpp b/src/passes/FuncCastEmulation.cpp
index 23eb98a8c..972cf719c 100644
--- a/src/passes/FuncCastEmulation.cpp
+++ b/src/passes/FuncCastEmulation.cpp
@@ -157,8 +157,7 @@ struct FuncCastEmulation : public Pass {
bool addsEffects() override { return true; }
void run(Module* module) override {
- Index numParams = std::stoul(
- getPassOptions().getArgumentOrDefault("max-func-params", "16"));
+ Index numParams = std::stoul(getArgumentOrDefault("max-func-params", "16"));
// we just need the one ABI function type for all indirect calls
HeapType ABIType(
Signature(Type(std::vector<Type>(numParams, Type::i64)), Type::i64));