Skip to content

Commit b84f5af

Browse files
committed
Don't print initial MIR
1 parent c5aade5 commit b84f5af

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/Passes/StandardInstrumentations.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -479,8 +479,7 @@ template <typename T> void TextChangeReporter<T>::handleInitialIR(Any IR) {
479479

480480
template <typename T>
481481
void TextChangeReporter<T>::handleInitialMIR(const MachineFunction *IR) {
482-
Out << "*** MIR Dump At Start ***\n";
483-
IR->print(Out);
482+
// For simplicity, don't print the initial MIR.
484483
}
485484

486485
template <typename T>

0 commit comments

Comments
 (0)