You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 16, 2025. It is now read-only.
I need to compile with
+zfinx
, so that float operations use int registers.In llvm 14, it looks like this is available:
However, if I try to compile LLVM IR to riscv source-code with it, It continues to use float registers.
In conjueciton with
+f
, it uses float variables:conversely, if I use without
+f
, the float add becomes software emulated:finally, using some flag that doesnt exist has the same effect as using zfinx, i.e. none, so I wonder if I'm passing in the right parameter?
Thoughts on how I can enable
zfinx
in llvm 14?The text was updated successfully, but these errors were encountered: