From: Dan Gohman Date: Thu, 18 Dec 2008 22:07:25 +0000 (+0000) Subject: Fix a copy+pasto in an assertion message. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f04865f23406324d484b5947704e69d35853c9b6;p=oota-llvm.git Fix a copy+pasto in an assertion message. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61217 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/LowerSubregs.cpp b/lib/CodeGen/LowerSubregs.cpp index a5c02c0b713..0cb6aab6db5 100644 --- a/lib/CodeGen/LowerSubregs.cpp +++ b/lib/CodeGen/LowerSubregs.cpp @@ -76,7 +76,7 @@ bool LowerSubregsInstructionPass::LowerExtract(MachineInstr *MI) { assert(TargetRegisterInfo::isPhysicalRegister(SuperReg) && "Extract supperg source must be a physical register"); assert(TargetRegisterInfo::isPhysicalRegister(DstReg) && - "Insert destination must be in a physical register"); + "Extract destination must be in a physical register"); DOUT << "subreg: CONVERTING: " << *MI;