From 8431427b169332199a8f6a4262e73532aa7ec543 Mon Sep 17 00:00:00 2001 From: Dylan McKay Date: Mon, 6 Feb 2017 08:43:30 +0000 Subject: [PATCH] [AVR] Use 'print' instead of 'dump' This should fix an undefined reference on the AVR buildbot. llvm-svn: 294175 --- lib/Target/AVR/AVRMCInstLower.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/AVR/AVRMCInstLower.cpp b/lib/Target/AVR/AVRMCInstLower.cpp index 342fe558813..475dda420e8 100644 --- a/lib/Target/AVR/AVRMCInstLower.cpp +++ b/lib/Target/AVR/AVRMCInstLower.cpp @@ -56,7 +56,7 @@ void AVRMCInstLower::lowerInstruction(const MachineInstr &MI, MCInst &OutMI) con switch (MO.getType()) { default: - MI.dump(); + MI.print(errs()); llvm_unreachable("unknown operand type"); case MachineOperand::MO_Register: // Ignore all implicit register operands.