diff options
author | Chris Lattner <sabre@nondot.org> | 2002-04-09 19:48:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-04-09 19:48:49 +0000 |
commit | 2e9fa6d10146e29690da9c1954f7d699ca719147 (patch) | |
tree | 17a8a90eff67468e69fc7f7f4411e94d0f07626b /llvm/lib/Bytecode/Writer | |
parent | 98d0ac0f8ef7c0a2bed59b1238f760ed17d81fc1 (diff) | |
download | bcm5719-llvm-2e9fa6d10146e29690da9c1954f7d699ca719147.tar.gz bcm5719-llvm-2e9fa6d10146e29690da9c1954f7d699ca719147.zip |
Move FunctionArgument out of iOther.h into Argument.h and rename class to
be 'Argument' instead of FunctionArgument.
llvm-svn: 2216
Diffstat (limited to 'llvm/lib/Bytecode/Writer')
-rw-r--r-- | llvm/lib/Bytecode/Writer/Writer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bytecode/Writer/Writer.cpp b/llvm/lib/Bytecode/Writer/Writer.cpp index 0b883acd58a..ab22db3c7fb 100644 --- a/llvm/lib/Bytecode/Writer/Writer.cpp +++ b/llvm/lib/Bytecode/Writer/Writer.cpp @@ -73,7 +73,7 @@ void BytecodeWriter::outputConstants(bool isFunction) { ValNo = Type::FirstDerivedTyID; // Start emitting at the derived types... // Scan through and ignore function arguments... - for (; ValNo < Plane.size() && isa<FunctionArgument>(Plane[ValNo]); ValNo++) + for (; ValNo < Plane.size() && isa<Argument>(Plane[ValNo]); ValNo++) /*empty*/; unsigned NC = ValNo; // Number of constants |