aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/LowerSubregs.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-12-18 22:07:25 +0000
committerDan Gohman <gohman@apple.com>2008-12-18 22:07:25 +0000
commitf04865f23406324d484b5947704e69d35853c9b6 (patch)
tree4de32cb274dcb7ce0dca50f47650686ba0d3a0c0 /lib/CodeGen/LowerSubregs.cpp
parent07af7650494dd161e0c82898a6fdba084bac2caf (diff)
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
Diffstat (limited to 'lib/CodeGen/LowerSubregs.cpp')
-rw-r--r--lib/CodeGen/LowerSubregs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/LowerSubregs.cpp b/lib/CodeGen/LowerSubregs.cpp
index a5c02c0b71..0cb6aab6db 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;