summary refs log tree commit diff
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin@c9x.me>2024-01-02 11:16:08 +0100
committerQuentin Carbonneaux <quentin@c9x.me>2024-01-02 11:16:08 +0100
commit4bc4c9584a13736c20855cdea2203d3bd0a259a3 (patch)
treee1e203610cdc5231a89c1713c2fa6736b1cfbf53
parent5af33410f6faa6c0f7d97af5b802b2608b228bc2 (diff)
downloadroux-4bc4c9584a13736c20855cdea2203d3bd0a259a3.tar.gz
revert 5af33410
Causes errors with stock toolchain
on OpenBSD.
-rw-r--r--amd64/emit.c2
-rw-r--r--arm64/emit.c1
2 files changed, 1 insertions, 2 deletions
diff --git a/amd64/emit.c b/amd64/emit.c
index c949589..297cc76 100644
--- a/amd64/emit.c
+++ b/amd64/emit.c
@@ -581,7 +581,7 @@ amd64_emitfn(Fn *fn, FILE *f)
 	uint64_t fs;
 
 	emitfnlnk(fn->name, &fn->lnk, f);
-	fputs("\tendbr64\n\tpushq %rbp\n\tmovq %rsp, %rbp\n", f);
+	fputs("\tpushq %rbp\n\tmovq %rsp, %rbp\n", f);
 	fs = framesz(fn);
 	if (fs)
 		fprintf(f, "\tsubq $%"PRIu64", %%rsp\n", fs);
diff --git a/arm64/emit.c b/arm64/emit.c
index 85b5f3d..78a0358 100644
--- a/arm64/emit.c
+++ b/arm64/emit.c
@@ -514,7 +514,6 @@ arm64_emitfn(Fn *fn, FILE *out)
 	if (T.apple)
 		e->fn->lnk.align = 4;
 	emitfnlnk(e->fn->name, &e->fn->lnk, e->f);
-	fputs("\thint\t#34\n", e->f);
 	framelayout(e);
 
 	if (e->fn->vararg && !T.apple) {