summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/EarlyIfConversion.cpp
diff options
context:
space:
mode:
authorMatthias Braun <matze@braunis.de>2015-05-19 21:22:20 +0000
committerMatthias Braun <matze@braunis.de>2015-05-19 21:22:20 +0000
commit07066cca20ca8569f4e6b9ebeca62cb747022303 (patch)
tree65ff92e948f15290a51b744ecb219dffe9915a0a /llvm/lib/CodeGen/EarlyIfConversion.cpp
parent1cdd948f5bd4792f0cff03a0431d8cd9cf06c697 (diff)
downloadbcm5719-llvm-07066cca20ca8569f4e6b9ebeca62cb747022303.tar.gz
bcm5719-llvm-07066cca20ca8569f4e6b9ebeca62cb747022303.zip
MachineInstr: Remove unused parameter.
llvm-svn: 237726
Diffstat (limited to 'llvm/lib/CodeGen/EarlyIfConversion.cpp')
-rw-r--r--llvm/lib/CodeGen/EarlyIfConversion.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/EarlyIfConversion.cpp b/llvm/lib/CodeGen/EarlyIfConversion.cpp
index 6cde4c24915..092b7f804e4 100644
--- a/llvm/lib/CodeGen/EarlyIfConversion.cpp
+++ b/llvm/lib/CodeGen/EarlyIfConversion.cpp
@@ -220,7 +220,7 @@ bool SSAIfConv::canSpeculateInstrs(MachineBasicBlock *MBB) {
// We never speculate stores, so an AA pointer isn't necessary.
bool DontMoveAcrossStore = true;
- if (!I->isSafeToMove(TII, nullptr, DontMoveAcrossStore)) {
+ if (!I->isSafeToMove(nullptr, DontMoveAcrossStore)) {
DEBUG(dbgs() << "Can't speculate: " << *I);
return false;
}
OpenPOWER on IntegriCloud