Skip to content

Commit 596f570

Browse files
committed
Address code review comments
1 parent 44d0ce4 commit 596f570

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

clang/include/clang/CIR/Dialect/IR/CIROps.td

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3736,17 +3736,19 @@ def CIR_ACosOp : CIR_UnaryFPToFPBuiltinOp<"acos", "ACosOp"> {
37363736
let summary = "Computes the arcus cosine of the specified value";
37373737
let description = [{
37383738
`cir.acos`computes the arcus cosine of a given value and
3739-
returns a result of the same type. ignoring floating-point
3740-
exceptions. It does not set `errno`.
3739+
returns a result of the same type.
3740+
3741+
Floating-point exceptions are ignored, and it does not set `errno`.
37413742
}];
37423743
}
37433744

37443745
def CIR_FAbsOp : CIR_UnaryFPToFPBuiltinOp<"fabs", "FAbsOp"> {
37453746
let summary = "Computes the floating-point absolute value";
37463747
let description = [{
37473748
`cir.fabs` computes the absolute value of a floating-point operand
3748-
and returns a result of the same type, ignoring floating-point
3749-
exceptions. It does not set `errno`.
3749+
and returns a result of the same type.
3750+
3751+
Floating-point exceptions are ignored, and it does not set `errno`.
37503752
}];
37513753
}
37523754

0 commit comments

Comments
 (0)