Skip to content

Commit

Permalink
Fix operator precedence warning. NFCI.
Browse files Browse the repository at this point in the history
  • Loading branch information
RKSimon committed Apr 1, 2020
1 parent 552e46e commit be7a233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
Expand Up @@ -1340,7 +1340,7 @@ bool AMDGPUInstructionSelector::selectImageIntrinsic(
}

// TODO: Check this in verifier.
assert(!IsTexFail || DMaskLanes >= 1 && "should have legalized this");
assert((!IsTexFail || DMaskLanes >= 1) && "should have legalized this");

bool GLC = false;
bool SLC = false;
Expand Down

0 comments on commit be7a233

Please sign in to comment.