1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

- Type::TypeTyID doesn't exist any more (bug 122)

- Types don't have names any more, just write them on ostream directly

llvm-svn: 14606
This commit is contained in:
Reid Spencer 2004-07-04 11:37:54 +00:00
parent 37b31cbcba
commit 50fc2ffa25

View File

@ -146,10 +146,6 @@ void BytecodeWriter::outputConstant(const Constant *CPV) {
output_vbr(cast<ConstantSInt>(CPV)->getValue(), Out);
break;
case Type::TypeTyID: // Serialize type type
assert(0 && "Types should not be in the Constant!");
break;
case Type::ArrayTyID: {
const ConstantArray *CPA = cast<ConstantArray>(CPV);
assert(!CPA->isString() && "Constant strings should be handled specially!");
@ -193,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()->getName() << "'\n";
<< " type '" << CPV->getType() << "'\n";
break;
}
return;