diff options
author | Chris Lattner <sabre@nondot.org> | 2004-02-09 04:37:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-02-09 04:37:31 +0000 |
commit | ac6db755c3cd1870e6a99bf7ba65049e6f923e53 (patch) | |
tree | db23ada97a1e7195ba277fd9dcd770026ebbfa52 /llvm/lib/Bytecode/Writer | |
parent | 4da68e2d7b21e988148d612d429cb51315138300 (diff) | |
download | bcm5719-llvm-ac6db755c3cd1870e6a99bf7ba65049e6f923e53.tar.gz bcm5719-llvm-ac6db755c3cd1870e6a99bf7ba65049e6f923e53.zip |
Adjust to the changed StructType interface. In particular, getElementTypes() is gone.
llvm-svn: 11228
Diffstat (limited to 'llvm/lib/Bytecode/Writer')
-rw-r--r-- | llvm/lib/Bytecode/Writer/ConstantWriter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Bytecode/Writer/ConstantWriter.cpp b/llvm/lib/Bytecode/Writer/ConstantWriter.cpp index 6d49165b028..bb8d286899a 100644 --- a/llvm/lib/Bytecode/Writer/ConstantWriter.cpp +++ b/llvm/lib/Bytecode/Writer/ConstantWriter.cpp @@ -66,8 +66,8 @@ void BytecodeWriter::outputType(const Type *T) { const StructType *ST = cast<StructType>(T); // Output all of the element types... - StructType::ElementTypes::const_iterator I = ST->getElementTypes().begin(); - for (; I != ST->getElementTypes().end(); ++I) { + for (StructType::element_iterator I = ST->element_begin(), + E = ST->element_end(); I != E; ++I) { int Slot = Table.getSlot(*I); assert(Slot != -1 && "Type used but not available!!"); output_vbr((unsigned)Slot, Out); |