diff options
| author | 2025-12-12 17:40:35 +0100 | |
|---|---|---|
| committer | 2025-12-12 17:40:35 +0100 | |
| commit | 24bcc929477751b056e81e7772dc2bb3d11ce4a5 (patch) | |
| tree | f83eb0c32df505f25c828d0a62f17806dc2736b1 /targ.c | |
| parent | 3cd8e39ff61217a37b41cee47f2682f5291317d6 (diff) | |
s/amd64/x86_64/
Diffstat (limited to 'targ.c')
| -rw-r--r-- | targ.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ #include "common.h" #include "type.h" -extern const struct mctarg t_amd64_sysv; +extern const struct mctarg t_x86_64_sysv; static const struct targ { const char *name; struct { uchar longsize, vlongsize, ptrsize, valistsize; }; @@ -11,7 +11,7 @@ static const struct targ { const struct mctarg *mctarg; enum mcisa isa; } targs[] = { - { "amd64-sysv", {8, 8, 8, 24}, {8, 8, 8, 8}, 1, TYULONG, TYLONG, TYINT, &t_amd64_sysv, ISamd64 }, + { "x86_64-sysv", {8, 8, 8, 24}, {8, 8, 8, 8}, 1, TYULONG, TYLONG, TYINT, &t_x86_64_sysv, ISx86_64 }, { "i686-sysv", {4, 8, 4, 8}, {4, 4, 4, 4}, 1, TYUINT, TYINT, TYINT } }; |