We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following code crashes the compiler
import "core:runtime" f :: proc(ti: ^runtime.Type_Info) -> bool { switch ti.id { case u8: return true case byte: return false case: return true } } main :: proc() { f(type_info_of(int)) }
Odin: dev-2022-08:c041d155 OS: Windows 10 Home Basic, build 18363.1556 CPU: Intel(R) Core(TM) i7-4790K CPU @ 4.00GHz RAM: 16244 MiB
Either an error if this is not allowed, or for this behavior to work.
The compiler crashes without a good user-facing error.
LLVM CODE GEN FAILED FOR PROCEDURE: wasm_bindgen.f define internal i8 @wasm_bindgen.f(%runtime.Type_Info* %0, i8* noalias nocapture nonnull %__.context_ptr) { decls: %1 = alloca %runtime.Type_Info*, align 8 br label %entry entry: ; preds = %decls store %runtime.Type_Info* %0, %runtime.Type_Info** %1, align 8 %2 = bitcast i8* %__.context_ptr to %runtime.Context* %3 = load %runtime.Type_Info*, %runtime.Type_Info** %1, align 8 %4 = getelementptr inbounds %runtime.Type_Info, %runtime.Type_Info* %3, i32 0, i32 4 %5 = load i64, i64* %4, align 8 switch i64 %5, label %switch.default.body [ i64 72057594037927950, label %switch.case.body i64 72057594037927950, label %switch.case.body1 ] switch.case.body: ; preds = %entry ret i8 1 switch.case.body1: ; preds = %entry ret i8 0 switch.default.body: ; preds = %entry ret i8 1 switch.done: ; No predecessors! unreachable } Duplicate integer as switch case switch i64 %5, label %switch.default.body [ i64 72057594037927950, label %switch.case.body i64 72057594037927950, label %switch.case.body1 ] i64 72057594037927950
The text was updated successfully, but these errors were encountered:
ran into this today as well. V2 ::[2]f32 i am only adding to the issue in that the error is a bit obtuse, i removed v2 and im good for my code.
V2 ::[2]f32
switch member.type { //cases case V2, [2]f32: //... case: }
[error] LLVM Error: Duplicate integer as switch case switch i64 %79, label %switch.default.body [ i64 504403158265495591, label %switch.case.body i64 4683743612465315843, label %switch.case.body1 i64 4683743612465315876, label %switch.case.body1 i64 72057594037928055, label %switch.case.body2 i64 72057594037927952, label %switch.case.body2 i64 216172782113783818, label %switch.case.body3 i64 216172782113783945, label %switch.case.body3 i64 936748722493063330, label %switch.case.body4 i64 936748722493063330, label %switch.case.body4 ], !dbg !13523 i64 936748722493063330
Sorry, something went wrong.
No branches or pull requests
Context
The following code crashes the compiler
Expected Behavior
Either an error if this is not allowed, or for this behavior to work.
Current Behavior
The compiler crashes without a good user-facing error.
Failure Logs
The text was updated successfully, but these errors were encountered: