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"> {
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
37443745def 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
You can’t perform that action at this time.
0 commit comments