Skip to content

Commit d798d3b

Browse files
committed
[libc] Fix incorrect tablegen for lgamma
1 parent 3b050e8 commit d798d3b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libc/spec/gnu_ext.td

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,17 @@ def GnuExtensions : StandardSpec<"GNUExtensions"> {
3636
FunctionSpec<
3737
"lgamma_r",
3838
RetValSpec<DoubleType>,
39-
[ArgSpec<DoubleType, IntPtr>]
39+
[ArgSpec<DoubleType>, ArgSpec<IntPtr>]
4040
>,
4141
FunctionSpec<
4242
"lgammaf_r",
4343
RetValSpec<FloatType>,
44-
[ArgSpec<FloatType, IntPtr>]
44+
[ArgSpec<FloatType>, ArgSpec<IntPtr>]
4545
>,
4646
FunctionSpec<
4747
"lgammal_r",
4848
RetValSpec<LongDoubleType>,
49-
[ArgSpec<LongDoubleType, IntPtr>]
49+
[ArgSpec<LongDoubleType>, ArgSpec<IntPtr>]
5050
>,
5151
]
5252
>;

0 commit comments

Comments
 (0)