Remove pointer names in debug, following Clang.

This commit is contained in:
Christoffer Lerno
2026-01-07 02:35:05 +01:00
parent 824d064710
commit e0771beabc
4 changed files with 11 additions and 11 deletions

View File

@@ -324,7 +324,7 @@ static LLVMMetadataRef llvm_debug_pointer_type(GenContext *c, Type *type)
inner,
type_size(type) * 8,
type_abi_alignment(type) * 8, 0,
type->name, strlen(type->name));
NULL, 0);
}
static LLVMMetadataRef llvm_debug_enum_type(GenContext *c, Type *type, LLVMMetadataRef scope)