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 /include | |
parent | 4fa393aae146891b33bfe072addb12bf44d61449 (diff) | |
download | external_llvm-ec89a364b86ccd943fc6cf3ad8f84825ba1550fd.zip external_llvm-ec89a364b86ccd943fc6cf3ad8f84825ba1550fd.tar.gz external_llvm-ec89a364b86ccd943fc6cf3ad8f84825ba1550fd.tar.bz2 |
Correct an assertion string.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54348 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-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 dbb1294..8b15065 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; } |