From: Dan Gohman Date: Tue, 5 Aug 2008 14:42:28 +0000 (+0000) Subject: Correct an assertion string. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ec89a364b86ccd943fc6cf3ad8f84825ba1550fd;p=oota-llvm.git Correct an assertion string. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54348 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index dbb12947f20..8b15065bfbb 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -1097,7 +1097,7 @@ public: /// true. It returns the MachineInstr opcode value that the node's opcode /// corresponds to. unsigned getMachineOpcode() const { - assert(isMachineOpcode() && "Not a target opcode!"); + assert(isMachineOpcode() && "Not a MachineInstr opcode!"); return ~NodeType; }