diff options
author | Chris Lattner <sabre@nondot.org> | 2006-01-25 18:57:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-01-25 18:57:15 +0000 |
commit | d07c86465d06e4a7119729cc3a69e2089b58f20b (patch) | |
tree | c8054fffeb04577af56147ecff8a283458241c3a /llvm/lib/Target/TargetLowering.cpp | |
parent | 1880f8db02fe594ea56e035970df9c273c22c113 (diff) | |
download | bcm5719-llvm-d07c86465d06e4a7119729cc3a69e2089b58f20b.tar.gz bcm5719-llvm-d07c86465d06e4a7119729cc3a69e2089b58f20b.zip |
initialize an instance var, apparently I forgot to commit this long ago
llvm-svn: 25609
Diffstat (limited to 'llvm/lib/Target/TargetLowering.cpp')
-rw-r--r-- | llvm/lib/Target/TargetLowering.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/TargetLowering.cpp b/llvm/lib/Target/TargetLowering.cpp index 1128f74fa65..8f177c901d2 100644 --- a/llvm/lib/Target/TargetLowering.cpp +++ b/llvm/lib/Target/TargetLowering.cpp @@ -32,6 +32,7 @@ TargetLowering::TargetLowering(TargetMachine &tm) UseUnderscoreSetJmpLongJmp = false; IntDivIsCheap = false; Pow2DivIsCheap = false; + StackPointerRegisterToSaveRestore = 0; SchedPreferenceInfo = SchedulingForLatency; } |