summaryrefslogtreecommitdiff
path: root/lib/Transforms/InstCombine/InstCombine.h
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2013-09-20 22:12:42 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2013-09-20 22:12:42 +0000
commit19a6f1133fbc01d18bd07cdc082e9488d731bcbc (patch)
tree1f31f0f2b9755b5ad22fe74f5c2f2b4e3b4f42f3 /lib/Transforms/InstCombine/InstCombine.h
parentd48bd3ca378c291bd1555a7f1e4667a0aa018c2c (diff)
downloadllvm-19a6f1133fbc01d18bd07cdc082e9488d731bcbc.tar.gz
llvm-19a6f1133fbc01d18bd07cdc082e9488d731bcbc.tar.bz2
llvm-19a6f1133fbc01d18bd07cdc082e9488d731bcbc.tar.xz
InstCombine: Remove unused argument. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191112 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/InstCombine/InstCombine.h')
-rw-r--r--lib/Transforms/InstCombine/InstCombine.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/InstCombine/InstCombine.h b/lib/Transforms/InstCombine/InstCombine.h
index e29bf1aa78..ee9510609e 100644
--- a/lib/Transforms/InstCombine/InstCombine.h
+++ b/lib/Transforms/InstCombine/InstCombine.h
@@ -158,8 +158,8 @@ public:
ConstantInt *DivRHS);
Instruction *FoldICmpShrCst(ICmpInst &ICI, BinaryOperator *DivI,
ConstantInt *DivRHS);
- Instruction *FoldICmpAddOpCst(ICmpInst &ICI, Value *X, ConstantInt *CI,
- ICmpInst::Predicate Pred, Value *TheAdd);
+ Instruction *FoldICmpAddOpCst(Instruction &ICI, Value *X, ConstantInt *CI,
+ ICmpInst::Predicate Pred);
Instruction *FoldGEPICmp(GEPOperator *GEPLHS, Value *RHS,
ICmpInst::Predicate Cond, Instruction &I);
Instruction *FoldShiftByConstant(Value *Op0, ConstantInt *Op1,