summaryrefslogtreecommitdiff
path: root/register.c
diff options
context:
space:
mode:
authorCarson Fleming <[email protected]>2026-03-29 08:28:28 -1000
committerCarson Fleming <[email protected]>2026-03-29 08:28:28 -1000
commit7cf2065be92855b5b1db31a4bb7afbb4af29a817 (patch)
tree773e9df00d46934f548a2d76dbe6e61aec9b21c9 /register.c
parent50495e8f815d3d5f92b3d36369acc52a6d2ea9c4 (diff)
downloadccc-7cf2065be92855b5b1db31a4bb7afbb4af29a817.tar.gz
calling functions and some optimizationsHEADmaster
Diffstat (limited to 'register.c')
-rw-r--r--register.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/register.c b/register.c
index ca095ea..fe1a718 100644
--- a/register.c
+++ b/register.c
@@ -44,5 +44,5 @@ const struct reg R8 = {
};
const struct reg* const CALLING_CONV[] = {&RDI, &RSI, &RDX, &R10, &R9, &R8};
-const unsigned long long CC_N_REGS =
+const unsigned char CC_N_REGS =
sizeof(CALLING_CONV) / sizeof(const struct reg* const);