mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-09 07:24:39 +00:00
It is OK to remove extra cast if operation is EQ/NE even though source
and destination sign may not match but other conditions are met. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31056 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -4795,8 +4795,9 @@ Instruction *InstCombiner::visitSetCondInstWithCastAndCast(SetCondInst &SCI) {
|
||||
// %B = setgt short %X, 1330
|
||||
//
|
||||
// because %A may have negative value.
|
||||
// However, it is OK if SrcTy is bool. See cast-set.ll testcase.
|
||||
if (isSignSrc == isSignDest || SrcTy == Type::BoolTy)
|
||||
// However, it is OK if SrcTy is bool (See cast-set.ll testcase)
|
||||
// OR operation is EQ/NE.
|
||||
if (isSignSrc == isSignDest || SrcTy == Type::BoolTy || SCI.isEquality())
|
||||
RHSCIOp = Res;
|
||||
else
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user