OSDN Git Service

Only check that the result of the mapping was not
authorDuncan Sands <baldrick@free.fr>
Wed, 3 Dec 2008 12:36:16 +0000 (12:36 +0000)
committerDuncan Sands <baldrick@free.fr>
Wed, 3 Dec 2008 12:36:16 +0000 (12:36 +0000)
a new node if the node was actually remapped.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60482 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/LegalizeTypes.cpp

index 0573b6d..84dfdc7 100644 (file)
@@ -385,6 +385,7 @@ void DAGTypeLegalizer::RemapValue(SDValue &N) {
     // replaced with other values.
     RemapValue(I->second);
     N = I->second;
+    assert(N.getNode()->getNodeId() != NewNode && "Mapped to unanalyzed node!");
   }
 }