From: Chris Lattner Date: Sat, 22 Sep 2007 07:02:12 +0000 (+0000) Subject: initialize isstore/isload fields in ctor, fixing PR1695 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b690a005c10b521e294b95b35c1503b7b34671f4;p=oota-llvm.git initialize isstore/isload fields in ctor, fixing PR1695 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42222 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp index f12e285416c..6014fe9453f 100644 --- a/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp +++ b/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp @@ -125,6 +125,8 @@ public: , StageEnd(NULL) , Latency(0) , IsCall(false) + , IsLoad(false) + , IsStore(false) , Slot(0) , Group(NULL) #ifndef NDEBUG