diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-04-17 06:13:15 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-04-17 06:13:15 +0000 |
commit | f1bd5fcdb421ae07e34a9ffca57a2a20306c165f (patch) | |
tree | 8e0908f82ecca7f92e4e075a133fdb8b7aaed4b8 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
parent | 829c300ce07f3dadde8c212b7035565be67e050b (diff) | |
download | bcm5719-llvm-f1bd5fcdb421ae07e34a9ffca57a2a20306c165f.tar.gz bcm5719-llvm-f1bd5fcdb421ae07e34a9ffca57a2a20306c165f.zip |
More work to allow dag combiner to promote 16-bit ops to 32-bit.
llvm-svn: 101621
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 9082fb6fbe9..4b7fb869711 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -355,7 +355,7 @@ void SelectionDAGISel::ShrinkDemandedOps() { InWorklist.insert(I); } - TargetLowering::TargetLoweringOpt TLO(*CurDAG, true); + TargetLowering::TargetLoweringOpt TLO(*CurDAG, true, true, true); while (!Worklist.empty()) { SDNode *N = Worklist.pop_back_val(); InWorklist.erase(N); |