File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
clang/include/clang/CIR/Dialect/IR Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -3736,17 +3736,19 @@ def CIR_ACosOp : CIR_UnaryFPToFPBuiltinOp<"acos", "ACosOp"> {
3736
3736
let summary = "Computes the arcus cosine of the specified value";
3737
3737
let description = [{
3738
3738
`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`.
3741
3742
}];
3742
3743
}
3743
3744
3744
3745
def CIR_FAbsOp : CIR_UnaryFPToFPBuiltinOp<"fabs", "FAbsOp"> {
3745
3746
let summary = "Computes the floating-point absolute value";
3746
3747
let description = [{
3747
3748
`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`.
3750
3752
}];
3751
3753
}
3752
3754
You can’t perform that action at this time.
0 commit comments