From ee4a76563a84839453588104e94d4891fc44d625 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 25 Jan 2006 18:57:15 +0000 Subject: [PATCH] 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 --- lib/CodeGen/SelectionDAG/TargetLowering.cpp | 1 + 1 file changed, 1 insertion(+) 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; }