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,8 +1,5 @@ |
| 1 | .global floorl | 1 | /* zig patch: removed `floorl` in favor of using zig compiler_rt's implementations */ |
| 2 | .type floorl,@function | 2 | |
| 3 | floorl: | | |
| 4 | 	fldt 8(%esp) | | |
| 5 | 1:	mov $0x7,%al | | |
| 6 | 1:	fstcw 8(%esp) | 3 | 1:	fstcw 8(%esp) |
| 7 | 	mov 9(%esp),%ah | 4 | 	mov 9(%esp),%ah |
| 8 | 	mov %al,9(%esp) | 5 | 	mov %al,9(%esp) |
lib/libc/musl/src/math/x86_64/floorl.s+2-5
| ... | @@ -1,8 +1,5 @@ | ... | @@ -1,8 +1,5 @@ |
| 1 | .global floorl | 1 | /* zig patch: removed `floorl` in favor of using zig compiler_rt's implementations */ |
| 2 | .type floorl,@function | 2 | |
| 3 | floorl: | | |
| 4 | 	fldt 8(%rsp) | | |
| 5 | 1:	mov $0x7,%al | | |
| 6 | 1:	fstcw 8(%rsp) | 3 | 1:	fstcw 8(%rsp) |
| 7 | 	mov 9(%rsp),%ah | 4 | 	mov 9(%rsp),%ah |
| 8 | 	mov %al,9(%rsp) | 5 | 	mov %al,9(%rsp) |