diff options
author | Chen Zheng <shchenz@cn.ibm.com> | 2018-07-12 03:06:04 +0000 |
---|---|---|
committer | Chen Zheng <shchenz@cn.ibm.com> | 2018-07-12 03:06:04 +0000 |
commit | fdf13ef342e29d22f96f64a82679609873229d92 (patch) | |
tree | 1f97d7a6e459eb0081f2faf9ea1d5ca32c82d891 /llvm/lib/Analysis/InstructionSimplify.cpp | |
parent | 71f1ec7ea1108937251d3681fb91d882009f0a97 (diff) | |
download | bcm5719-llvm-fdf13ef342e29d22f96f64a82679609873229d92.tar.gz bcm5719-llvm-fdf13ef342e29d22f96f64a82679609873229d92.zip |
[InstSimplify] simplify add instruction if two operands are negative
Differential Revision: https://reviews.llvm.org/D49216
llvm-svn: 336881
Diffstat (limited to 'llvm/lib/Analysis/InstructionSimplify.cpp')
-rw-r--r-- | llvm/lib/Analysis/InstructionSimplify.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/Analysis/InstructionSimplify.cpp b/llvm/lib/Analysis/InstructionSimplify.cpp index 061ce8f0bd1..87b1fc5b8ee 100644 --- a/llvm/lib/Analysis/InstructionSimplify.cpp +++ b/llvm/lib/Analysis/InstructionSimplify.cpp @@ -540,6 +540,10 @@ static Value *SimplifyAddInst(Value *Op0, Value *Op1, bool IsNSW, bool IsNUW, if (match(Op1, m_Zero())) return Op0; + // If two operands are negative, return 0. + if (isKnownNegation(Op0, Op1)) + return Constant::getNullValue(Op0->getType()); + // X + (Y - X) -> Y // (Y - X) + X -> Y // Eg: X + -X -> 0 |