mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
[DAGCombiner] Add some comments to some true/false arguments to make it obvious what they are. NFC
llvm-svn: 335095
This commit is contained in:
parent
a3537ad8e7
commit
a975109a32
@ -6725,9 +6725,9 @@ SDValue DAGCombiner::foldSelectOfConstants(SDNode *N) {
|
||||
// in another basic block or it could require searching a complicated
|
||||
// expression.
|
||||
if (CondVT.isInteger() &&
|
||||
TLI.getBooleanContents(false, true) ==
|
||||
TLI.getBooleanContents(/*isVec*/false, /*isFloat*/true) ==
|
||||
TargetLowering::ZeroOrOneBooleanContent &&
|
||||
TLI.getBooleanContents(false, false) ==
|
||||
TLI.getBooleanContents(/*isVec*/false, /*isFloat*/false) ==
|
||||
TargetLowering::ZeroOrOneBooleanContent &&
|
||||
C1->isNullValue() && C2->isOne()) {
|
||||
SDValue NotCond =
|
||||
|
Loading…
Reference in New Issue
Block a user