diff options
| author | 2026-01-04 08:58:04 +0100 | |
|---|---|---|
| committer | 2026-01-04 08:58:04 +0100 | |
| commit | b826bf418330b9b13a26195ee541e9e7fd9e77ac (patch) | |
| tree | 206e021249dd9296408e476ac38072b7d22e53ac /ir/ir.c | |
| parent | 12974932af785a2ab2cefb5bc80da3ee1211e3c3 (diff) | |
rega: fix spill copy of i32 -> i64
Diffstat (limited to 'ir/ir.c')
| -rw-r--r-- | ir/ir.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ uchar type2cls[NTYPETAG]; uchar cls2siz[] = { [KI32] = 4, [KI64] = 8, [KF32] = 4, [KF64] = 8 }; uchar cls2load[] = { - [KI32] = Oloads32, [KI64] = Oloadi64, + [KI32] = Oloadu32, [KI64] = Oloadi64, [KF32] = Oloadf32, [KF64] = Oloadf64, [KPTR] = -1 }, cls2store[] = { [KI32] = Ostorei32, [KI64] = Ostorei64, |