diff options
Diffstat (limited to 'src/passes/Inlining.cpp')
-rw-r--r-- | src/passes/Inlining.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/passes/Inlining.cpp b/src/passes/Inlining.cpp index 9eade8690..5a2a7137a 100644 --- a/src/passes/Inlining.cpp +++ b/src/passes/Inlining.cpp @@ -287,6 +287,10 @@ doInlining(Module* module, Function* into, const InliningAction& action) { } struct Inlining : public Pass { + // This pass changes locals and parameters. + // FIXME DWARF updating does not handle local changes yet. + bool invalidatesDWARF() override { return true; } + // whether to optimize where we inline bool optimize = false; |