From: Chris Lattner Date: Wed, 25 Jan 2006 18:57:15 +0000 (+0000) Subject: initialize an instance var, apparently I forgot to commit this long ago X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ee4a76563a84839453588104e94d4891fc44d625;p=oota-llvm.git initialize an instance var, apparently I forgot to commit this long ago git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25609 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 1128f74fa65..8f177c901d2 100644 --- a/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -32,6 +32,7 @@ TargetLowering::TargetLowering(TargetMachine &tm) UseUnderscoreSetJmpLongJmp = false; IntDivIsCheap = false; Pow2DivIsCheap = false; + StackPointerRegisterToSaveRestore = 0; SchedPreferenceInfo = SchedulingForLatency; }