mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-25 23:14:59 -07:00
"Fix" LLVM boolean bug (more like a bodge)
This commit is contained in:
+1
-1
@@ -3412,7 +3412,7 @@ void check_parsed_files(Checker *c) {
|
||||
// Add "Basic" type information
|
||||
for (isize i = 0; i < gb_count_of(basic_types)-1; i++) {
|
||||
Type *t = &basic_types[i];
|
||||
if (t->Basic.size > 0) {
|
||||
if (t->Basic.size > 0 && t->Basic.kind != Basic_llvm_bool) {
|
||||
add_type_info_type(c, t);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user