Adjust to the changed StructType interface. In particular, getElementTypes() is...
[oota-llvm.git] / lib / Bytecode / Writer / ConstantWriter.cpp
index 6d49165b028f847ff76f40cff2699c2fb2121da0..bb8d286899ac4e1a22c2c4d81b553cf7a10c95cd 100644 (file)
@@ -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);