diff options
Diffstat (limited to 'lib/Bytecode/Writer/ConstantWriter.cpp')
-rw-r--r-- | lib/Bytecode/Writer/ConstantWriter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Bytecode/Writer/ConstantWriter.cpp b/lib/Bytecode/Writer/ConstantWriter.cpp index bac5a4c050..4940ea671b 100644 --- a/lib/Bytecode/Writer/ConstantWriter.cpp +++ b/lib/Bytecode/Writer/ConstantWriter.cpp @@ -81,10 +81,10 @@ void BytecodeWriter::outputType(const Type *T) { } case Type::ModuleTyID: - case Type::PackedTyID: + //case Type::PackedTyID: default: cerr << __FILE__ << ":" << __LINE__ << ": Don't know how to serialize" - << " Type '" << T->getName() << "'\n"; + << " Type '" << T->getDescription() << "'\n"; break; } } @@ -113,7 +113,7 @@ bool BytecodeWriter::outputConstant(const ConstPoolVal *CPV) { break; case Type::TypeTyID: // Serialize type type - outputType(((const ConstPoolType*)CPV)->getValue()); + assert(0 && "Types should not be in the ConstPool!"); break; case Type::ArrayTyID: { @@ -123,7 +123,7 @@ bool BytecodeWriter::outputConstant(const ConstPoolVal *CPV) { output_vbr(size, Out); // Not for sized arrays!!! for (unsigned i = 0; i < size; i++) { - int Slot = Table.getValSlot(CPA->getValues()[i]); + int Slot = Table.getValSlot(CPA->getOperand(i)); assert(Slot != -1 && "Constant used but not available!!"); output_vbr((unsigned)Slot, Out); } |