| author | |
| committer | |
| log | f6ac1a6e05cbd46f646cf09e036921ca282694cf |
| tree | 92c2bf146ac739891e48d5199e02629413af82a6 |
| parent | 9a53be5fb444873ee561eb54a0ea1aaeaaad844d |
| signature |
Some of the functions (e.g., `lgammal`) depended on the `__sinl` and
`__cosl`
functions being present.2 files changed, 2 insertions(+), 0 deletions(-)
lib/compiler_rt/cos.zig+1| ... | @@ -21,6 +21,7 @@ const utils = @import("math_utils.zig"); | ... | @@ -21,6 +21,7 @@ const utils = @import("math_utils.zig"); |
| 21 | 21 | ||
| 22 | comptime { | 22 | comptime { |
| 23 | symbol(&__cosh, "__cosh"); | 23 | symbol(&__cosh, "__cosh"); |
| 24 | symbol(&cosl, "__cosl"); | ||
| 24 | symbol(&cosf, "cosf"); | 25 | symbol(&cosf, "cosf"); |
| 25 | symbol(&cos, "cos"); | 26 | symbol(&cos, "cos"); |
| 26 | symbol(&__cosx, "__cosx"); | 27 | symbol(&__cosx, "__cosx"); |
lib/compiler_rt/sin.zig+1| ... | @@ -21,6 +21,7 @@ const utils = @import("math_utils.zig"); | ... | @@ -21,6 +21,7 @@ const utils = @import("math_utils.zig"); |
| 21 | 21 | ||
| 22 | comptime { | 22 | comptime { |
| 23 | symbol(&__sinh, "__sinh"); | 23 | symbol(&__sinh, "__sinh"); |
| 24 | symbol(&sinl, "__sinl"); | ||
| 24 | symbol(&sinf, "sinf"); | 25 | symbol(&sinf, "sinf"); |
| 25 | symbol(&sin, "sin"); | 26 | symbol(&sin, "sin"); |
| 26 | symbol(&__sinx, "__sinx"); | 27 | symbol(&__sinx, "__sinx"); |