aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/TargetLowering.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-01-25 18:57:15 +0000
committerChris Lattner <sabre@nondot.org>2006-01-25 18:57:15 +0000
commitee4a76563a84839453588104e94d4891fc44d625 (patch)
tree1c05588f6c4ccf6e7af8e658c3f95a19a93f0a72 /lib/CodeGen/SelectionDAG/TargetLowering.cpp
parent46c01cfe9f1c6900ea63df9c79094d0826fd9ecc (diff)
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
Diffstat (limited to 'lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/TargetLowering.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/lib/CodeGen/SelectionDAG/TargetLowering.cpp
index 1128f74fa6..8f177c901d 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;
}