aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Function.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-09 19:59:31 +0000
committerChris Lattner <sabre@nondot.org>2002-04-09 19:59:31 +0000
commite06e9146eeb48e3ebf0f30bdaf7d86a6e03946ad (patch)
tree88c367a169fcecba357d0eef998e9b7e7cabd4b0 /include/llvm/Function.h
parent73e214244f2403b5ba0ef81b8839600f3c8ffebc (diff)
downloadexternal_llvm-e06e9146eeb48e3ebf0f30bdaf7d86a6e03946ad.zip
external_llvm-e06e9146eeb48e3ebf0f30bdaf7d86a6e03946ad.tar.gz
external_llvm-e06e9146eeb48e3ebf0f30bdaf7d86a6e03946ad.tar.bz2
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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Function.h b/include/llvm/Function.h
index 322cb8a..91df9a7 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;