mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-01 12:18:15 +00:00
fix wrong type in map debug info
This commit is contained in:
@@ -945,7 +945,7 @@ gb_internal LLVMMetadataRef lb_debug_type(lbModule *m, Type *type) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
case Type_Map: {
|
case Type_Map: {
|
||||||
bt = base_type(type->Map.debug_metadata_type);
|
bt = base_type(bt->Map.debug_metadata_type);
|
||||||
GB_ASSERT(bt->kind == Type_Struct);
|
GB_ASSERT(bt->kind == Type_Struct);
|
||||||
return lb_debug_struct(m, type, bt, name, scope, file, line);
|
return lb_debug_struct(m, type, bt, name, scope, file, line);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user