diff options
| author | Chris Lattner <sabre@nondot.org> | 2007-09-22 07:02:12 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2007-09-22 07:02:12 +0000 |
| commit | 10671ad650cb45331a07dc28249827fc365aec19 (patch) | |
| tree | 1b7ec7bdd532bb588552b18516a710cdca711bb8 /llvm/lib/CodeGen | |
| parent | 5b95a171e2f5e0f7b87f8ba9ce311d3985b47917 (diff) | |
| download | bcm5719-llvm-10671ad650cb45331a07dc28249827fc365aec19.tar.gz bcm5719-llvm-10671ad650cb45331a07dc28249827fc365aec19.zip | |
initialize isstore/isload fields in ctor, fixing PR1695
llvm-svn: 42222
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp index f12e285416c..6014fe9453f 100644 --- a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp +++ b/llvm/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 |

