-
Notifications
You must be signed in to change notification settings - Fork 228
bcmp missing #352
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
This doesn't seem like a bug, emitting What's worked for me is either:
EDIT: It should be noted that the call in |
compiler-builtins provides an implementation of bcmp so this should work fine. |
tgross35
pushed a commit
to tgross35/compiler-builtins
that referenced
this issue
Feb 23, 2025
* Add docstrings to the tgamma functions * Add docstrings to the lgamma functions * Add docstrings to trunc * Add docstrings to exp10 functions
tgross35
pushed a commit
that referenced
this issue
Apr 18, 2025
* Add docstrings to the tgamma functions * Add docstrings to the lgamma functions * Add docstrings to trunc * Add docstrings to exp10 functions
This was referenced Apr 19, 2025
Closed
Closed
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
LLVM emits bcmp for
#![no_builtins]
,#![no_std]
enabled crates on rustc 1.43.0 while targeting i686-unknown-linux-musl.This was supposedly resolved in #303, but still appears to be a problem.
Specifically, the memcmp here is being converted to a bcmp.
The text was updated successfully, but these errors were encountered: