mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 13:11:39 +01:00
InstSimplify: Fold a hasNoSignedWrap() call into a match() expression
No functionality change intended, it's just a little more concise. llvm-svn: 221281
This commit is contained in:
parent
2d7576a90a
commit
ae0380e44d
@ -1408,8 +1408,7 @@ static Value *SimplifyAShrInst(Value *Op0, Value *Op1, bool isExact,
|
||||
|
||||
// (X << A) >> A -> X
|
||||
Value *X;
|
||||
if (match(Op0, m_Shl(m_Value(X), m_Specific(Op1))) &&
|
||||
cast<OverflowingBinaryOperator>(Op0)->hasNoSignedWrap())
|
||||
if (match(Op0, m_NSWShl(m_Value(X), m_Specific(Op1))))
|
||||
return X;
|
||||
|
||||
// Arithmetic shifting an all-sign-bit value is a no-op.
|
||||
|
Loading…
x
Reference in New Issue
Block a user