1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Fix a copy+pasto in an assertion string.

llvm-svn: 53419
This commit is contained in:
Dan Gohman 2008-07-10 19:58:23 +00:00
parent b379840cf7
commit 157e75d975

View File

@ -407,7 +407,7 @@ private:
void AddRegOperandToRegInfo(MachineRegisterInfo *RegInfo); void AddRegOperandToRegInfo(MachineRegisterInfo *RegInfo);
void RemoveRegOperandFromRegInfo() { void RemoveRegOperandFromRegInfo() {
assert(isOnRegUseList() && "Can only add reg operand to use lists"); assert(isOnRegUseList() && "Reg operand is not on a use list");
// Unlink this from the doubly linked list of operands. // Unlink this from the doubly linked list of operands.
MachineOperand *NextOp = Contents.Reg.Next; MachineOperand *NextOp = Contents.Reg.Next;
*Contents.Reg.Prev = NextOp; *Contents.Reg.Prev = NextOp;