diff options
Diffstat (limited to 'src/passes/SignExtLowering.cpp')
-rw-r--r-- | src/passes/SignExtLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/passes/SignExtLowering.cpp b/src/passes/SignExtLowering.cpp index beb36494f..659dc4b51 100644 --- a/src/passes/SignExtLowering.cpp +++ b/src/passes/SignExtLowering.cpp @@ -73,7 +73,7 @@ struct SignExtLowering : public WalkerPass<PostWalker<SignExtLowering>> { if (!module->features.has(FeatureSet::SignExt)) { return; } - super::run(module); + Super::run(module); module->features.disable(FeatureSet::SignExt); } }; |