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 4b6f1d1 commit 869496dCopy full SHA for 869496d
llvm/lib/Analysis/ConstantFolding.cpp
@@ -1269,10 +1269,10 @@ Constant *llvm::ConstantFoldCompareInstOperands(
1269
if (CmpInst::isFPPredicate(Predicate)) {
1270
// Flush any denormal constant float input according to denormal handling
1271
// mode.
1272
- Ops0 = FlushFPConstant(Ops0, I, /* IsOutput=*/false);
+ Ops0 = FlushFPConstant(Ops0, I, /*IsOutput=*/false);
1273
if (!Ops0)
1274
return nullptr;
1275
- Ops1 = FlushFPConstant(Ops1, I, /* IsOutput= */ false);
+ Ops1 = FlushFPConstant(Ops1, I, /*IsOutput=*/false);
1276
if (!Ops1)
1277
1278
}
0 commit comments