Fix for PR341

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14845 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2004-07-15 02:40:04 +00:00
parent 017fdcb76d
commit f51c7f56ca
3 changed files with 5 additions and 5 deletions

View File

@@ -189,7 +189,7 @@ void BytecodeWriter::outputConstant(const Constant *CPV) {
case Type::LabelTyID:
default:
std::cerr << __FILE__ << ":" << __LINE__ << ": Don't know how to serialize"
<< " type '" << CPV->getType() << "'\n";
<< " type '" << *CPV->getType() << "'\n";
break;
}
return;