forked from OSchip/llvm-project
Apply clang-tidy fixes for readability-identifier-naming in ArithmeticOps.cpp (NFC)
This commit is contained in:
parent
03a26c34a7
commit
c2828b6363
|
@ -773,9 +773,9 @@ void arith::DivFOp::getCanonicalizationPatterns(RewritePatternSet &patterns,
|
|||
OpFoldResult arith::RemFOp::fold(ArrayRef<Attribute> operands) {
|
||||
return constFoldBinaryOp<FloatAttr>(operands,
|
||||
[](const APFloat &a, const APFloat &b) {
|
||||
APFloat Result(a);
|
||||
(void)Result.remainder(b);
|
||||
return Result;
|
||||
APFloat result(a);
|
||||
(void)result.remainder(b);
|
||||
return result;
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue