diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-25 01:28:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-25 01:28:05 +0000 |
commit | 168c5856bfc1a8369b22ba062d96da91ea026d3d (patch) | |
tree | 60b32ac213e91e28527ee0e38944f5b19924765f /llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | 02cbe037e36866c8ae37b06b79a7f59956d36eae (diff) | |
download | bcm5719-llvm-168c5856bfc1a8369b22ba062d96da91ea026d3d.tar.gz bcm5719-llvm-168c5856bfc1a8369b22ba062d96da91ea026d3d.zip |
initialize a instance variable
llvm-svn: 34567
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 073588cd12b..39f6fe79a97 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -148,6 +148,7 @@ TargetLowering::TargetLowering(TargetMachine &tm) allowUnalignedMemoryAccesses = false; UseUnderscoreSetJmp = false; UseUnderscoreLongJmp = false; + SelectIsExpensive = false; IntDivIsCheap = false; Pow2DivIsCheap = false; StackPointerRegisterToSaveRestore = 0; |