From: Andrew Lenharth Date: Wed, 15 Mar 2006 19:03:16 +0000 (+0000) Subject: no heap is happening here X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=26c2e73da6162667e8f9f315339d9ed30b9be10c;p=oota-llvm.git no heap is happening here git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26781 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/DataStructure/Local.cpp b/lib/Analysis/DataStructure/Local.cpp index 51f8d885f48..c87e9c442e2 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();