[llvm-commits] [llvm] r54348 - /llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h

Dan Gohman gohman at apple.com
Tue Aug 5 07:42:30 PDT 2008


Author: djg
Date: Tue Aug  5 09:42:28 2008
New Revision: 54348

URL: http://llvm.org/viewvc/llvm-project?rev=54348&view=rev
Log:
Correct an assertion string.

Modified:
    llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h

Modified: llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h?rev=54348&r1=54347&r2=54348&view=diff

==============================================================================
--- llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h (original)
+++ llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h Tue Aug  5 09:42:28 2008
@@ -1097,7 +1097,7 @@
   /// 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;
   }
 





More information about the llvm-commits mailing list