diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-03-22 10:40:54 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-03-22 10:40:54 -0400 |
commit | 9db053d1b868b642c63bc7a324b78299756f6959 (patch) | |
tree | 548367d458662ef6c329f5a3c0d3d90c632dc3cf /lisc | |
parent | cbb0f5aa837f29f3152b794efd71e104c684244a (diff) | |
download | roux-9db053d1b868b642c63bc7a324b78299756f6959.tar.gz |
typo in isel (abi fuzzer)
Diffstat (limited to 'lisc')
-rw-r--r-- | lisc/isel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisc/isel.c b/lisc/isel.c index ede7463..42388af 100644 --- a/lisc/isel.c +++ b/lisc/isel.c @@ -312,7 +312,7 @@ Emit: val = (val + 15) & ~INT64_C(15); if (val < 0 || val > INT32_MAX) diag("isel: alloc too large"); - emit(OAlloc, Kl, i.to, getcon(val, fn), R); + emit(OSAlloc, Kl, i.to, getcon(val, fn), R); } else { /* r0 = (i.arg[0] + 15) & -16 */ r0 = newtmp("isel", Kl, fn); |