diff options
| author | 2026-01-01 20:03:19 +0100 | |
|---|---|---|
| committer | 2026-01-01 20:03:19 +0100 | |
| commit | ba1f40078b458a3071bd847e820f951f8231523b (patch) | |
| tree | 541dc7d136a830467910a25352a16ff16cce5030 | |
| parent | f82eb40dbb7cbeab60615d0bef1fd73aa02998af (diff) | |
target sysv abi by default even for unknown abi
| -rw-r--r-- | targ.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |