diff options
Diffstat (limited to 'amd64/sysv.c')
| -rw-r--r-- | amd64/sysv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/amd64/sysv.c b/amd64/sysv.c index 020f597..486c0c0 100644 --- a/amd64/sysv.c +++ b/amd64/sysv.c @@ -69,7 +69,7 @@ static int abiarg(short r[2], uchar cls[2], uchar *r2off, int *ni, int *nf, int *ns, union irtype typ) { static const uchar intregs[] = { RDI, RSI, RDX, RCX, R8, R9 }; - enum { NINT = arraylength(intregs), NFLT = 8 }; + enum { NINT = countof(intregs), NFLT = 8 }; int ret, ni_save, nf_save; if (!typ.isagg) { |