[llvm] db8d7b6 - [DAGCombine][NFC] s/it's/its in the comment of hasNoInfs().
Abinav Puthan Purayil via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 28 19:10:14 PDT 2021
Author: Abinav Puthan Purayil
Date: 2021-10-29T07:36:38+05:30
New Revision: db8d7b6e2d951bc8dc363b4d14dfcbf85eaf96ee
URL: https://github.com/llvm/llvm-project/commit/db8d7b6e2d951bc8dc363b4d14dfcbf85eaf96ee
DIFF: https://github.com/llvm/llvm-project/commit/db8d7b6e2d951bc8dc363b4d14dfcbf85eaf96ee.diff
LOG: [DAGCombine][NFC] s/it's/its in the comment of hasNoInfs().
Added:
Modified:
llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
Removed:
################################################################################
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
index d7d3344e444b9..4753d27380282 100644
--- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -13061,7 +13061,7 @@ static bool isContractableFMUL(const TargetOptions &Options, SDValue N) {
N->getFlags().hasAllowContract();
}
-// Return true if `N` can assume no infinities involved in it's computation.
+// Returns true if `N` can assume no infinities involved in its computation.
static bool hasNoInfs(const TargetOptions &Options, SDValue N) {
return Options.NoInfsFPMath || N.getNode()->getFlags().hasNoInfs();
}
More information about the llvm-commits
mailing list