-
Notifications
You must be signed in to change notification settings - Fork 67
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
Support f16
and f128
#461
Comments
Hey @zedar I saw you did rust-lang/gcc#47 and rust-lang/gccjit.rs#33 for this. Is anything else needed in the GCC backend, or do the rustc_codegen_gcc/src/type_.rs Lines 123 to 137 in a63b83e
|
The support was merged recently (those were updated and are not |
Oh I see they were done in antoyo#17, awesome! I don't have any need for it, just been chasing down the |
(chances are you know this already, but Miri is using https://github.com/josh-project/josh for supposedly easier syncs, I think Clippy is looking to switch to it too) |
I think this has been synced in by now right? A simple example seems to work https://godbolt.org/z/GqWvrza5e. Many thanks for making this happen! |
As of rust-lang/rust#121728, the backends now have stubs for
f16
andf128
: https://github.com/rust-lang/rust/blob/6cbf0926d54c80ea6d15df333be9281f65bbeb36/compiler/rustc_codegen_gcc/src/type_.rs#L123-L137.It will be a while before these codepaths can even be exercised since the frontend isn't hooked up yet,(frontend is done now) but at some point this should be changed to either gracefully fail or do the right thing.The text was updated successfully, but these errors were encountered: