mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-19 18:24:00 +00:00
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:
@ -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...
|
||||
|
Reference in New Issue
Block a user