From: Jakob Stoklund Olesen Date: Wed, 7 Dec 2011 01:08:22 +0000 (+0000) Subject: Add missing check. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=04003451986868d201a2893c2ff2eaa0fb869aee;p=oota-llvm.git Add missing check. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146004 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp index f76e8372b01..ee36fc6ae15 100644 --- a/lib/CodeGen/MachineInstr.cpp +++ b/lib/CodeGen/MachineInstr.cpp @@ -241,7 +241,7 @@ void MachineOperand::print(raw_ostream &OS, const TargetMachine *TM) const { OS << PrintReg(getReg(), TRI, getSubReg()); if (isDef() || isKill() || isDead() || isImplicit() || isUndef() || - isEarlyClobber()) { + isInternalRead() || isEarlyClobber()) { OS << '<'; bool NeedComma = false; if (isDef()) {