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
After reading the first lines of the zig documentation, I found out that zig supports special integers sizes like i7 or i65535. However, the following program:
>>> zig run hello.zig
Assertion failed at /home/andy/dev/bootstrap-zig/zig/src/stage1/analyze.cpp:9586 in get_llvm_type. This is a bug in the Zig compiler.
Unable to dump stack trace: debug info stripped
Interestingely, when using an integer type of i185 or higher, the error changes to:
LLVM ERROR: Unsupported library call operation!
integers below i129 seem to work fine for me.
I am using windows with zig version 0.7.0.
The text was updated successfully, but these errors were encountered:
andrewrk
added
bug
Observed behavior contradicts documented or intended behavior
stage1
The process of building from source via WebAssembly and the C backend.
labels
Dec 8, 2020
After reading the first lines of the zig documentation, I found out that zig supports special integers sizes like i7 or i65535. However, the following program:
fails with:
Interestingely, when using an integer type of
i185
or higher, the error changes to:integers below
i129
seem to work fine for me.I am using windows with zig version 0.7.0.
The text was updated successfully, but these errors were encountered: