diff options
author | Chris Lattner <sabre@nondot.org> | 2004-02-09 04:14:01 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-02-09 04:14:01 +0000 |
commit | fa829be4d348aeec4cb89760960179e71ad5746f (patch) | |
tree | 5715ba4d300721dc59e3700891b6cb037f476ee3 /llvm/lib/Bytecode/Writer | |
parent | f5a4e33e497d161491c1ae5320e8cc30e2a7a243 (diff) | |
download | bcm5719-llvm-fa829be4d348aeec4cb89760960179e71ad5746f.tar.gz bcm5719-llvm-fa829be4d348aeec4cb89760960179e71ad5746f.zip |
Start using the new and improve interface to FunctionType arguments
llvm-svn: 11224
Diffstat (limited to 'llvm/lib/Bytecode/Writer')
-rw-r--r-- | llvm/lib/Bytecode/Writer/ConstantWriter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Bytecode/Writer/ConstantWriter.cpp b/llvm/lib/Bytecode/Writer/ConstantWriter.cpp index 6fe596872ea..6d49165b028 100644 --- a/llvm/lib/Bytecode/Writer/ConstantWriter.cpp +++ b/llvm/lib/Bytecode/Writer/ConstantWriter.cpp @@ -34,12 +34,12 @@ void BytecodeWriter::outputType(const Type *T) { assert(Slot != -1 && "Type used but not available!!"); output_vbr((unsigned)Slot, Out); - // Output the number of arguments to method (+1 if varargs): - output_vbr((unsigned)MT->getParamTypes().size()+MT->isVarArg(), Out); + // Output the number of arguments to function (+1 if varargs): + output_vbr((unsigned)MT->getNumParams()+MT->isVarArg(), Out); // Output all of the arguments... - FunctionType::ParamTypes::const_iterator I = MT->getParamTypes().begin(); - for (; I != MT->getParamTypes().end(); ++I) { + FunctionType::param_iterator I = MT->param_begin(); + for (; I != MT->param_end(); ++I) { Slot = Table.getSlot(*I); assert(Slot != -1 && "Type used but not available!!"); output_vbr((unsigned)Slot, Out); |