OSDN Git Service

no heap is happening here
authorAndrew Lenharth <andrewl@lenharth.org>
Wed, 15 Mar 2006 19:03:16 +0000 (19:03 +0000)
committerAndrew Lenharth <andrewl@lenharth.org>
Wed, 15 Mar 2006 19:03:16 +0000 (19:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26781 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DataStructure/Local.cpp

index 51f8d88..c87e9c4 100644 (file)
@@ -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();