Skip to content

Commit badd5c1

Browse files
Implement review comments on linking in comments
1 parent 510da45 commit badd5c1

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3357,10 +3357,11 @@ bool SelectionDAGLegalize::ExpandNode(SDNode *Node) {
33573357
break;
33583358
}
33593359
case ISD::FCANONICALIZE: {
3360-
// This implements llvm.canonicalize.f* by multiplication with 1.0,
3361-
// as suggested in https://llvm.org/docs/LangRef.html#id2335. It uses
3362-
// strict_fp operations even outside a strict_fp context in order to
3363-
// guarantee that the canonicalization is not optimized away by later
3360+
// This implements llvm.canonicalize.f* by multiplication with 1.0, as
3361+
// suggested in
3362+
// https://llvm.org/docs/LangRef.html#llvm-canonicalize-intrinsic.
3363+
// It uses strict_fp operations even outside a strict_fp context in order
3364+
// to guarantee that the canonicalization is not optimized away by later
33643365
// passes.
33653366

33663367
// Get operand x.

0 commit comments

Comments
 (0)