aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/DataStructure/Local.cpp
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2006-03-15 19:03:16 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2006-03-15 19:03:16 +0000
commit26c2e73da6162667e8f9f315339d9ed30b9be10c (patch)
treeb973d16dab60341d297da2e78b55795d74f1e90a /lib/Analysis/DataStructure/Local.cpp
parentace0565e6541b97e7243ec5141e3e6f55dbe121a (diff)
no heap is happening here
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26781 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/Local.cpp')
-rw-r--r--lib/Analysis/DataStructure/Local.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/Local.cpp b/lib/Analysis/DataStructure/Local.cpp
index 51f8d885f4..c87e9c442e 100644
--- a/lib/Analysis/DataStructure/Local.cpp
+++ b/lib/Analysis/DataStructure/Local.cpp
@@ -549,7 +549,7 @@ void GraphBuilder::visitCallSite(CallSite CS) {
case Intrinsic::memcpy_i64: {
//write first location
if (DSNode *N = getValueDest(**CS.arg_begin()).getNode())
- N->setHeapNodeMarker()->setModifiedMarker();
+ N->setModifiedMarker();
//and read second pointer
if (DSNode *N = getValueDest(**(CS.arg_begin() + 1)).getNode())
N->setReadMarker();