aboutsummaryrefslogtreecommitdiff
path: root/src/host
diff options
context:
space:
mode:
Diffstat (limited to 'src/host')
-rw-r--r--src/host/buildvm_asm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/host/buildvm_asm.c b/src/host/buildvm_asm.c
index 1a633602..ffd14903 100644
--- a/src/host/buildvm_asm.c
+++ b/src/host/buildvm_asm.c
@@ -218,7 +218,8 @@ static void emit_asm_label(BuildCtx *ctx, const char *name, int size, int isfunc
218 case BUILD_machasm: 218 case BUILD_machasm:
219 fprintf(ctx->fp, 219 fprintf(ctx->fp,
220 "\n\t.private_extern %s\n" 220 "\n\t.private_extern %s\n"
221 "%s:\n", name, name); 221 "\t.no_dead_strip %s\n"
222 "%s:\n", name, name, name);
222 break; 223 break;
223 default: 224 default:
224 break; 225 break;