diff options
author | Sanjay Patel <spatel@rotateright.com> | 2016-07-23 13:06:49 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2016-07-23 13:06:49 +0000 |
commit | 1271bf91783cdb0bebd701dea98907b1fbee68e5 (patch) | |
tree | 5b18f4d667eaef6291c9c3b58242c2ff1dcfecf5 /llvm/lib/Transforms/InstCombine/InstCombineInternal.h | |
parent | 488cb137a98201afc20a29a389a61f87bda69020 (diff) | |
download | bcm5719-llvm-1271bf91783cdb0bebd701dea98907b1fbee68e5.tar.gz bcm5719-llvm-1271bf91783cdb0bebd701dea98907b1fbee68e5.zip |
[InstCombine] allow icmp (bit-manipulation-intrinsic(), C) folds for vectors
llvm-svn: 276523
Diffstat (limited to 'llvm/lib/Transforms/InstCombine/InstCombineInternal.h')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineInternal.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineInternal.h b/llvm/lib/Transforms/InstCombine/InstCombineInternal.h index 61dbd31448b..894e9a06468 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineInternal.h +++ b/llvm/lib/Transforms/InstCombine/InstCombineInternal.h @@ -585,8 +585,7 @@ private: ConstantInt *RHS); Instruction *foldICmpEqualityWithConstant(ICmpInst &ICI, Instruction *LHS, ConstantInt *RHS); - Instruction *foldICmpIntrinsicWithConstant(ICmpInst &ICI, Instruction *LHS, - ConstantInt *RHS); + Instruction *foldICmpIntrinsicWithConstant(ICmpInst &ICI); Instruction *OptAndOp(Instruction *Op, ConstantInt *OpRHS, ConstantInt *AndRHS, BinaryOperator &TheAnd); |