libc: remove c floorl implementaions forgotten in #24335

This commit is contained in:
David Senoner 2025-08-27 13:40:08 +02:00
parent 9399fcddce
commit f6b0d64ddc
2 changed files with 4 additions and 10 deletions

View File

@ -1,8 +1,5 @@
.global floorl
.type floorl,@function
floorl:
fldt 8(%esp)
1: mov $0x7,%al
/* zig patch: removed `floorl` in favor of using zig compiler_rt's implementations */
1: fstcw 8(%esp)
mov 9(%esp),%ah
mov %al,9(%esp)

View File

@ -1,8 +1,5 @@
.global floorl
.type floorl,@function
floorl:
fldt 8(%rsp)
1: mov $0x7,%al
/* zig patch: removed `floorl` in favor of using zig compiler_rt's implementations */
1: fstcw 8(%rsp)
mov 9(%rsp),%ah
mov %al,9(%rsp)