We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50a4ab2 commit 111effeCopy full SHA for 111effe
llvm/lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp
@@ -2235,8 +2235,8 @@ Value *AMDGPUCodeGenPrepareImpl::matchFractPat(IntrinsicInst &I) {
2235
2236
// The value is only used in contexts where we know the input isn't a nan, so
2237
// any of the fmin variants are fine.
2238
- if (IID != Intrinsic::minnum &&
2239
- IID != Intrinsic::minimumnum & IID != Intrinsic::minimum)
+ if (IID != Intrinsic::minnum && IID != Intrinsic::minimum &&
+ IID != Intrinsic::minimumnum)
2240
return nullptr;
2241
2242
Type *Ty = I.getType();
0 commit comments