summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/DataStructure/NodeImpl.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-09 19:48:49 +0000
committerChris Lattner <sabre@nondot.org>2002-04-09 19:48:49 +0000
commit2e9fa6d10146e29690da9c1954f7d699ca719147 (patch)
tree17a8a90eff67468e69fc7f7f4411e94d0f07626b /llvm/lib/Analysis/DataStructure/NodeImpl.cpp
parent98d0ac0f8ef7c0a2bed59b1238f760ed17d81fc1 (diff)
downloadbcm5719-llvm-2e9fa6d10146e29690da9c1954f7d699ca719147.tar.gz
bcm5719-llvm-2e9fa6d10146e29690da9c1954f7d699ca719147.zip
Move FunctionArgument out of iOther.h into Argument.h and rename class to
be 'Argument' instead of FunctionArgument. llvm-svn: 2216
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/NodeImpl.cpp')
-rw-r--r--llvm/lib/Analysis/DataStructure/NodeImpl.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/DataStructure/NodeImpl.cpp b/llvm/lib/Analysis/DataStructure/NodeImpl.cpp
index 05ed8844ac6..6c986fe1db7 100644
--- a/llvm/lib/Analysis/DataStructure/NodeImpl.cpp
+++ b/llvm/lib/Analysis/DataStructure/NodeImpl.cpp
@@ -11,6 +11,7 @@
#include "llvm/BasicBlock.h"
#include "llvm/iMemory.h"
#include "llvm/iOther.h"
+#include "llvm/Argument.h"
#include "Support/STLExtras.h"
#include <algorithm>
#include <sstream>
@@ -288,7 +289,7 @@ void CallDSNode::mapNode(map<const DSNode*, DSNode*> &NodeMap,
MapPVS(ArgLinks[i], Old->ArgLinks[i], NodeMap);
}
-ArgDSNode::ArgDSNode(FunctionArgument *FA)
+ArgDSNode::ArgDSNode(Argument *FA)
: DSNode(ArgNode, FA->getType()), FuncArg(FA) {
}
OpenPOWER on IntegriCloud