diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-02-19 21:12:54 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-02-19 21:12:54 +0000 |
commit | 19e0a5b3c3a5c2ff620ea06726c218ce6fe2bf23 (patch) | |
tree | bdcc11a7e2b149ee2318a7101f511824d32cb713 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
parent | ca097adca873aee877f2f02fecc3be38b9047d77 (diff) | |
download | bcm5719-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.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 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) |