X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=mangle.c;h=bcd78d6e97341ebb0198b5f8c5ec407c3f93b42d;hb=b532880c7cfe1c5e69040f4e365c30e13d7c4c7d;hp=b7d2becf06c3f4da7f3c14cc3e6af354829c0f45;hpb=f664012db5a35746d0c6886411896e2e005ea631;p=cparser diff --git a/mangle.c b/mangle.c index b7d2bec..bcd78d6 100644 --- a/mangle.c +++ b/mangle.c @@ -222,7 +222,6 @@ static void mangle_type(type_t *orig_type) case TYPE_BITFIELD: panic("no mangling for this type implemented yet"); - break; } panic("invalid type encountered while mangling"); } @@ -281,7 +280,7 @@ ident *create_name_win32(entity_t *entity) switch (entity->declaration.type->function.linkage) { case LINKAGE_INVALID: - break; + panic("linkage type of function is invalid"); case LINKAGE_C: obstack_printf(o, "%s", entity->base.symbol->string); @@ -331,7 +330,9 @@ ident *create_name_linux_elf(entity_t *entity) if (entity->kind == ENTITY_FUNCTION) { switch (entity->declaration.type->function.linkage) { - case LINKAGE_INVALID: break; + case LINKAGE_INVALID: + panic("linkage type of function is invalid"); + case LINKAGE_C: break; case LINKAGE_CXX: needs_mangling = true; break; } @@ -353,6 +354,9 @@ ident *create_name_linux_elf(entity_t *entity) */ ident *create_name_macho(entity_t *entity) { + if (entity->kind == ENTITY_FUNCTION && entity->declaration.type->function.linkage == LINKAGE_INVALID) + panic("linkage type of function is invalid"); + obstack_printf(&obst, "_%s", entity->base.symbol->string); return make_id_from_obst(); }