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/Analysis/DataStructure/DataStructure.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/Analysis/DataStructure/DataStructure.h')
-rw-r--r-- | include/llvm/Analysis/DataStructure/DataStructure.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Analysis/DataStructure/DataStructure.h b/include/llvm/Analysis/DataStructure/DataStructure.h index 335477fb6c..bf787ea5ab 100644 --- a/include/llvm/Analysis/DataStructure/DataStructure.h +++ b/include/llvm/Analysis/DataStructure/DataStructure.h @@ -13,7 +13,7 @@ class Type; class CallInst; class AllocationInst; -class FunctionArgument; +class Argument; class DSNode; class FunctionRepBuilder; class GlobalValue; @@ -312,9 +312,9 @@ private: // ArgDSNode - Represent an incoming argument to the current function... // class ArgDSNode : public DSNode { - FunctionArgument *FuncArg; + Argument *FuncArg; public: - ArgDSNode(FunctionArgument *MA); + ArgDSNode(Argument *FA); virtual std::string getCaption() const; // isEquivalentTo - Return true if the nodes should be merged... |