Add debugging helper
authorChris Lattner <sabre@nondot.org>
Mon, 13 Jan 2003 00:52:25 +0000 (00:52 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 13 Jan 2003 00:52:25 +0000 (00:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5235 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/ValueMapper.cpp

index 517a3523389754a819cf0858ff17da808d646baf..b54a1a0e42a86f1f222e063f6536de2b80f88459 100644 (file)
@@ -81,7 +81,8 @@ Value *MapValue(const Value *V, std::map<const Value*, Value*> &VM) {
       assert(0 && "Unknown type of constant!");
     }
   }
-  
+
+  V->dump();
   assert(0 && "Unknown value type: why didn't it get resolved?!");
   return 0;
 }