diff options
Diffstat (limited to 'src/passes/Print.cpp')
-rw-r--r-- | src/passes/Print.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index b30a1180d..1ecf382d9 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -3025,8 +3025,7 @@ void PrintSExpression::visitDefinedFunction(Function* curr) { // Print the stack IR. printStackIR(curr->stackIR.get(), *this); } - if (currFunction->epilogLocation.size() && - lastPrintedLocation != *currFunction->epilogLocation.begin()) { + if (currFunction->epilogLocation.size()) { // Print last debug location: mix of decIndent and printDebugLocation // logic. doIndent(o, indent); |