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 | 9a48eb0c5cfd820a8eb3d0edb5b989ba2d26d7b0 (patch) | |
tree | 813e01e9d9fe23932ea336e672c61591f15c6ca3 /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
parent | d9cd5b837e62c8b7f8bd70b89a222f6c2887f53d (diff) | |
download | external_llvm-9a48eb0c5cfd820a8eb3d0edb5b989ba2d26d7b0.zip external_llvm-9a48eb0c5cfd820a8eb3d0edb5b989ba2d26d7b0.tar.gz external_llvm-9a48eb0c5cfd820a8eb3d0edb5b989ba2d26d7b0.tar.bz2 |
Generate these labels when we're in "fast" mode, not simply when we're no in
"optimize-for-size" mode.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65064 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index ed6e4fb..dc5f7d7 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/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) |