authorgravatar for paul.verigo@gmail.comPavel Verigo <paul.verigo@gmail.com> 2026-07-28 23:58:06+02:00
committergravatar for paul.verigo@gmail.comPavel Verigo <paul.verigo@gmail.com> 2026-07-28 23:58:06+02:00
logbdb1e9c9cf97520e41c8aff94553d5140a79dac7
tree8142afaeb6ed879543e610a09aaac846f72079fa
parente045b77d9981434af7e87512f94ecfe5b9dc376f

wasm: linker update names after compilerrt renames


1 files changed, 18 insertions(+), 18 deletions(-)

src/link/Wasm.zig+18-18
......@@ -4612,48 +4612,48 @@ pub fn intrinsicFunctionType(wasm: *Wasm, intrinsic: Mir.Intrinsic) Allocator.Er
46124612 .__udivti3 => internIntrinsicType(wasm, &.{ .u128_type, .u128_type }, .u128),
46134613 .__umodei5 => internIntrinsicType(wasm, &.{ .usize_type, .usize_type, .usize_type, .usize_type, .usize_type }, .void),
46144614 .__umodti3 => internIntrinsicType(wasm, &.{ .u128_type, .u128_type }, .u128),
4615 .ceilq => internIntrinsicType(wasm, &.{.f128_type}, .f128),
4615 .ceilf128 => internIntrinsicType(wasm, &.{.f128_type}, .f128),
46164616 .cos => internIntrinsicType(wasm, &.{.f64_type}, .f64),
46174617 .cosf => internIntrinsicType(wasm, &.{.f32_type}, .f32),
4618 .cosq => internIntrinsicType(wasm, &.{.f128_type}, .f128),
4618 .cosf128 => internIntrinsicType(wasm, &.{.f128_type}, .f128),
46194619 .exp => internIntrinsicType(wasm, &.{.f64_type}, .f64),
46204620 .exp2 => internIntrinsicType(wasm, &.{.f64_type}, .f64),
46214621 .exp2f => internIntrinsicType(wasm, &.{.f32_type}, .f32),
4622 .exp2q => internIntrinsicType(wasm, &.{.f128_type}, .f128),
4622 .exp2f128 => internIntrinsicType(wasm, &.{.f128_type}, .f128),
46234623 .expf => internIntrinsicType(wasm, &.{.f32_type}, .f32),
4624 .expq => internIntrinsicType(wasm, &.{.f128_type}, .f128),
4625 .fabsq => internIntrinsicType(wasm, &.{.f128_type}, .f128),
4626 .floorq => internIntrinsicType(wasm, &.{.f128_type}, .f128),
4624 .expf128 => internIntrinsicType(wasm, &.{.f128_type}, .f128),
4625 .fabsf128 => internIntrinsicType(wasm, &.{.f128_type}, .f128),
4626 .floorf128 => internIntrinsicType(wasm, &.{.f128_type}, .f128),
46274627 .fma => internIntrinsicType(wasm, &.{ .f64_type, .f64_type, .f64_type }, .f64),
46284628 .fmaf => internIntrinsicType(wasm, &.{ .f32_type, .f32_type, .f32_type }, .f32),
4629 .fmaq => internIntrinsicType(wasm, &.{ .f128_type, .f128_type, .f128_type }, .f128),
4629 .fmaf128 => internIntrinsicType(wasm, &.{ .f128_type, .f128_type, .f128_type }, .f128),
46304630 .fmax => internIntrinsicType(wasm, &.{ .f64_type, .f64_type }, .f64),
46314631 .fmaxf => internIntrinsicType(wasm, &.{ .f32_type, .f32_type }, .f32),
4632 .fmaxq => internIntrinsicType(wasm, &.{ .f128_type, .f128_type }, .f128),
4632 .fmaxf128 => internIntrinsicType(wasm, &.{ .f128_type, .f128_type }, .f128),
46334633 .fmin => internIntrinsicType(wasm, &.{ .f64_type, .f64_type }, .f64),
46344634 .fminf => internIntrinsicType(wasm, &.{ .f32_type, .f32_type }, .f32),
4635 .fminq => internIntrinsicType(wasm, &.{ .f128_type, .f128_type }, .f128),
4635 .fminf128 => internIntrinsicType(wasm, &.{ .f128_type, .f128_type }, .f128),
46364636 .fmod => internIntrinsicType(wasm, &.{ .f64_type, .f64_type }, .f64),
46374637 .fmodf => internIntrinsicType(wasm, &.{ .f32_type, .f32_type }, .f32),
4638 .fmodq => internIntrinsicType(wasm, &.{ .f128_type, .f128_type }, .f128),
4638 .fmodf128 => internIntrinsicType(wasm, &.{ .f128_type, .f128_type }, .f128),
46394639 .log => internIntrinsicType(wasm, &.{.f64_type}, .f64),
46404640 .log10 => internIntrinsicType(wasm, &.{.f64_type}, .f64),
46414641 .log10f => internIntrinsicType(wasm, &.{.f32_type}, .f32),
4642 .log10q => internIntrinsicType(wasm, &.{.f128_type}, .f128),
4642 .log10f128 => internIntrinsicType(wasm, &.{.f128_type}, .f128),
46434643 .log2 => internIntrinsicType(wasm, &.{.f64_type}, .f64),
46444644 .log2f => internIntrinsicType(wasm, &.{.f32_type}, .f32),
4645 .log2q => internIntrinsicType(wasm, &.{.f128_type}, .f128),
4645 .log2f128 => internIntrinsicType(wasm, &.{.f128_type}, .f128),
46464646 .logf => internIntrinsicType(wasm, &.{.f32_type}, .f32),
4647 .logq => internIntrinsicType(wasm, &.{.f128_type}, .f128),
4648 .roundq => internIntrinsicType(wasm, &.{.f128_type}, .f128),
4647 .logf128 => internIntrinsicType(wasm, &.{.f128_type}, .f128),
4648 .roundf128 => internIntrinsicType(wasm, &.{.f128_type}, .f128),
46494649 .sin => internIntrinsicType(wasm, &.{.f64_type}, .f64),
46504650 .sinf => internIntrinsicType(wasm, &.{.f32_type}, .f32),
4651 .sinq => internIntrinsicType(wasm, &.{.f128_type}, .f128),
4652 .sqrtq => internIntrinsicType(wasm, &.{.f128_type}, .f128),
4651 .sinf128 => internIntrinsicType(wasm, &.{.f128_type}, .f128),
4652 .sqrtf128 => internIntrinsicType(wasm, &.{.f128_type}, .f128),
46534653 .tan => internIntrinsicType(wasm, &.{.f64_type}, .f64),
46544654 .tanf => internIntrinsicType(wasm, &.{.f32_type}, .f32),
4655 .tanq => internIntrinsicType(wasm, &.{.f128_type}, .f128),
4656 .truncq => internIntrinsicType(wasm, &.{.f128_type}, .f128),
4655 .tanf128 => internIntrinsicType(wasm, &.{.f128_type}, .f128),
4656 .truncf128 => internIntrinsicType(wasm, &.{.f128_type}, .f128),
46574657 .memcpy => internIntrinsicType(wasm, &.{ .usize_type, .usize_type, .usize_type }, .usize),
46584658 .memmove => internIntrinsicType(wasm, &.{ .usize_type, .usize_type, .usize_type }, .usize),
46594659 .memset => internIntrinsicType(wasm, &.{ .usize_type, .i32_type, .usize_type }, .usize),