diff options
| author | Benjamin Kramer <benny.kra@googlemail.com> | 2013-01-11 20:05:37 +0000 |
|---|---|---|
| committer | Benjamin Kramer <benny.kra@googlemail.com> | 2013-01-11 20:05:37 +0000 |
| commit | 56b31bd9d756ba4524229bc4577ea87f94ac6e81 (patch) | |
| tree | 7e1298e2d53c6cd3b2775f1bf56f00dd6bf20e65 /llvm/lib/CodeGen/IfConversion.cpp | |
| parent | e55aa3c848e4530815356b42b494aa089f093df5 (diff) | |
| download | bcm5719-llvm-56b31bd9d756ba4524229bc4577ea87f94ac6e81.tar.gz bcm5719-llvm-56b31bd9d756ba4524229bc4577ea87f94ac6e81.zip | |
Split TargetLowering into a CodeGen and a SelectionDAG part.
This fixes some of the cycles between libCodeGen and libSelectionDAG. It's still
a complete mess but as long as the edges consist of virtual call it doesn't
cause breakage. BasicTTI did static calls and thus broke some build
configurations.
llvm-svn: 172246
Diffstat (limited to 'llvm/lib/CodeGen/IfConversion.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/IfConversion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/IfConversion.cpp b/llvm/lib/CodeGen/IfConversion.cpp index 8906991e867..3583a9b71b3 100644 --- a/llvm/lib/CodeGen/IfConversion.cpp +++ b/llvm/lib/CodeGen/IfConversion.cpp @@ -151,7 +151,7 @@ namespace { /// basic block number. std::vector<BBInfo> BBAnalysis; - const TargetLowering *TLI; + const TargetLoweringBase *TLI; const TargetInstrInfo *TII; const TargetRegisterInfo *TRI; const InstrItineraryData *InstrItins; |

