diff options
author | Dan Gohman <gohman@apple.com> | 2008-08-05 14:42:28 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-08-05 14:42:28 +0000 |
commit | ec89a364b86ccd943fc6cf3ad8f84825ba1550fd (patch) | |
tree | 6c94ea6995ea920b403fe414737c4e91a714d5cc | |
parent | 4fa393aae146891b33bfe072addb12bf44d61449 (diff) |
Correct an assertion string.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54348 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGNodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index dbb12947f2..8b15065bfb 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; } |