diff options
author | Chris Lattner <sabre@nondot.org> | 2002-04-09 19:59:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-04-09 19:59:31 +0000 |
commit | e06e9146eeb48e3ebf0f30bdaf7d86a6e03946ad (patch) | |
tree | 88c367a169fcecba357d0eef998e9b7e7cabd4b0 /include/llvm/Function.h | |
parent | 73e214244f2403b5ba0ef81b8839600f3c8ffebc (diff) |
Move FunctionArgument out of iOther.h into Argument.h and rename class to
be 'Argument' instead of FunctionArgument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2217 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Function.h')
-rw-r--r-- | include/llvm/Function.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Function.h b/include/llvm/Function.h index 322cb8af7b..91df9a70cf 100644 --- a/include/llvm/Function.h +++ b/include/llvm/Function.h @@ -19,8 +19,8 @@ class FunctionType; class Function : public GlobalValue, public SymTabValue { public: - typedef ValueHolder<FunctionArgument, Function, Function> ArgumentListType; - typedef ValueHolder<BasicBlock , Function, Function> BasicBlocksType; + typedef ValueHolder<Argument , Function, Function> ArgumentListType; + typedef ValueHolder<BasicBlock, Function, Function> BasicBlocksType; // BasicBlock iterators... typedef BasicBlocksType::iterator iterator; |