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 | 0e5546fa61423c1ca1f0f0007b56fcb7bac26987 (patch) | |
| tree | 6e477ac90eabdddc3b8e1b50941abbabffa7edd6 /llvm | |
| parent | a4d6d884d6a27395d48f6f2a98da4394345168bd (diff) | |
| download | bcm5719-llvm-0e5546fa61423c1ca1f0f0007b56fcb7bac26987.tar.gz bcm5719-llvm-0e5546fa61423c1ca1f0f0007b56fcb7bac26987.zip | |
Correct an assertion string.
llvm-svn: 54348
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/CodeGen/SelectionDAGNodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h b/llvm/include/llvm/CodeGen/SelectionDAGNodes.h index dbb12947f20..8b15065bfbb 100644 --- a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/llvm/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; } |

