libc: remove c floorl implementaions forgotten in #24335
2 files changed, 4 insertions(+), 10 deletions(-)
lib
lib/libc/musl/src/math/x32/floorl.s+2-5
| ... | ... | @@ -1,8 +1,5 @@ |
| 1 | | .global floorl |
| 2 | | .type floorl,@function |
| 3 | | floorl: |
| 4 | | 	fldt 8(%esp) |
| 5 | | 1:	mov $0x7,%al |
| 1 | /* zig patch: removed `floorl` in favor of using zig compiler_rt's implementations */ |
| 2 | |
| 6 | 3 | 1:	fstcw 8(%esp) |
| 7 | 4 | 	mov 9(%esp),%ah |
| 8 | 5 | 	mov %al,9(%esp) |
lib/libc/musl/src/math/x86_64/floorl.s+2-5
| ... | ... | @@ -1,8 +1,5 @@ |
| 1 | | .global floorl |
| 2 | | .type floorl,@function |
| 3 | | floorl: |
| 4 | | 	fldt 8(%rsp) |
| 5 | | 1:	mov $0x7,%al |
| 1 | /* zig patch: removed `floorl` in favor of using zig compiler_rt's implementations */ |
| 2 | |
| 6 | 3 | 1:	fstcw 8(%rsp) |
| 7 | 4 | 	mov 9(%rsp),%ah |
| 8 | 5 | 	mov %al,9(%rsp) |