summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-02-19 21:12:54 +0000
committerBill Wendling <isanbard@gmail.com>2009-02-19 21:12:54 +0000
commit19e0a5b3c3a5c2ff620ea06726c218ce6fe2bf23 (patch)
treebdcc11a7e2b149ee2318a7101f511824d32cb713 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
parentca097adca873aee877f2f02fecc3be38b9047d77 (diff)
downloadbcm5719-llvm-19e0a5b3c3a5c2ff620ea06726c218ce6fe2bf23.tar.gz
bcm5719-llvm-19e0a5b3c3a5c2ff620ea06726c218ce6fe2bf23.zip
Generate these labels when we're in "fast" mode, not simply when we're no in
"optimize-for-size" mode. llvm-svn: 65064
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index ed6e4fbe8c0..dc5f7d79f39 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -268,7 +268,7 @@ SelectionDAGISel::SelectionDAGISel(TargetMachine &tm, bool fast) :
FunctionPass(&ID), TM(tm), TLI(*tm.getTargetLowering()),
FuncInfo(new FunctionLoweringInfo(TLI)),
CurDAG(new SelectionDAG(TLI, *FuncInfo)),
- SDL(new SelectionDAGLowering(*CurDAG, TLI, *FuncInfo)),
+ SDL(new SelectionDAGLowering(*CurDAG, TLI, *FuncInfo, fast)),
GFI(),
Fast(fast),
DAGSize(0)
OpenPOWER on IntegriCloud