Correct an assertion string.
authorDan Gohman <gohman@apple.com>
Tue, 5 Aug 2008 14:42:28 +0000 (14:42 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 5 Aug 2008 14:42:28 +0000 (14:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54348 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/SelectionDAGNodes.h

index dbb12947f2021fc93a2794a9cf9d493cac2673fc..8b15065bfbb8d00a3c65bc5b29bbb9844905d6b1 100644 (file)
@@ -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;
   }