aboutsummaryrefslogtreecommitdiffhomepage
path: root/targ.c
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2026-01-01 20:03:19 +0100
committerlemon <lsof@mailbox.org>2026-01-01 20:03:19 +0100
commitba1f40078b458a3071bd847e820f951f8231523b (patch)
tree541dc7d136a830467910a25352a16ff16cce5030 /targ.c
parentf82eb40dbb7cbeab60615d0bef1fd73aa02998af (diff)
target sysv abi by default even for unknown abi
Diffstat (limited to 'targ.c')
-rw-r--r--targ.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/targ.c b/targ.c
index 4190b4f..4e508e3 100644
--- a/targ.c
+++ b/targ.c
@@ -10,8 +10,8 @@ static const struct targ {
uchar sizetype, ptrdifftype, wchartype;
const struct mctarg *mctarg;
} targs[] = {
- { {ISx86_64, -1, 1<<ABIgnu | 1<<ABImusl}, {8,8,8,24}, {8,8,8,8}, 1, TYULONG, TYLONG, TYINT, &t_x86_64_sysv },
- { {ISaarch64, -1, 1<<ABIgnu | 1<<ABImusl}, {8,8,8,32}, {8,8,8,8}, 0, TYULONG, TYLONG, TYUINT, &t_aarch64_aapcs },
+ { {ISx86_64, -1, -1}, {8,8,8,24}, {8,8,8,8}, 1, TYULONG, TYLONG, TYINT, &t_x86_64_sysv },
+ { {ISaarch64, -1, -1}, {8,8,8,32}, {8,8,8,8}, 0, TYULONG, TYLONG, TYUINT, &t_aarch64_aapcs },
};
struct targtriple target;