mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
[DAGCombiner] Fix bad comment that had immediate values swapped from the code and what they need to be to make sense. NFC
llvm-svn: 311144
This commit is contained in:
parent
8b29ebbe6c
commit
b5dc47ba02
@ -4029,7 +4029,7 @@ SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
|
||||
if (!TLI.isOperationLegalOrCustom(ISD::BSWAP, VT))
|
||||
return SDValue();
|
||||
|
||||
// Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
|
||||
// Recognize (and (shl a, 8), 0xff00), (and (srl a, 8), 0xff)
|
||||
bool LookPassAnd0 = false;
|
||||
bool LookPassAnd1 = false;
|
||||
if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
|
||||
|
Loading…
Reference in New Issue
Block a user