-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
Improper translate-c of pointer cast #12110
Comments
This is a bug, but the problem is slightly different from what you've pointed out. |
Yes, actually sorry you are right. In the "in the wild" example that is how we fixed it, in my minimum case I introduced a pointer cast that doesn't align correctly when the bug case is fixed, I will edit the comment above to better illustrate the point. |
i'll have a go at this, hopefully i'm not biting off too too much. |
ok i think this is too much for me at the moment, i'll step aside and let someone else take it on. apologies. |
@em-dash if you want a hint, the relevant code is here: Lines 3974 to 4011 in 616f65d
The |
@SpexGuy thanks for the hint, i think i've got it now. |
Zig Version
0.9.1
Steps to Reproduce
Consider
And ignore that I'm taking the address of a stack variable.
The full resulting zig code from `zig translate-c main.c > main.zig`
But specifically note:
And then
zig build-exe main.zig
But manually edited
Compiles and executes fine. This has been observed with
malloc
return values being cast as well, but wanted to not include any lib code for repro hence the stack variable address taking.Expected Behavior
The output of
translate-c
to be compilable without errors.Actual Behavior
Gots errs.
The text was updated successfully, but these errors were encountered: