diff options
| author | Jan Philipp Hafer <jan.hafer@rwth-aachen.de> | 2023-02-11 13:36:33 +0100 |
|---|---|---|
| committer | Veikka Tuominen <git@vexu.eu> | 2023-02-12 00:10:27 +0200 |
| commit | e10c0eefde9f994deac55406f9cd099f8a1f56ed (patch) | |
| tree | 99050b8c99b38756448f321c145b926d0efff95c /tools | |
| parent | ca0528209fc2a70fc52013b36439a093db0ac6e2 (diff) | |
| download | zig-e10c0eefde9f994deac55406f9cd099f8a1f56ed.tar.gz zig-e10c0eefde9f994deac55406f9cd099f8a1f56ed.zip | |
compiler_rt: add __powihf2, __powisf2, __powidf2, __powitf2, __powixf2
Implementation and tests ported from LLVM release 80.
Tests of __powihf2 created from __powisf2 tests with minor adjustments.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/gen_stubs.zig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/gen_stubs.zig b/tools/gen_stubs.zig index b1783b96ba..89d7a40228 100644 --- a/tools/gen_stubs.zig +++ b/tools/gen_stubs.zig @@ -833,6 +833,11 @@ const blacklisted_symbols = [_][]const u8{ "__popcountdi2", "__popcountsi2", "__popcountti2", + "__powidf2", + "__powihf2", + "__powisf2", + "__powitf2", + "__powixf2", "__roundh", "__roundx", "__sincosh", |
