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
This commit is contained in:
Chris Lattner
2002-04-09 19:59:31 +00:00
parent 73e214244f
commit e06e9146ee
7 changed files with 23 additions and 22 deletions

View File

@ -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...