summary refs log tree commit diff
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-03-22 10:40:54 -0400
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-03-22 10:40:54 -0400
commit9db053d1b868b642c63bc7a324b78299756f6959 (patch)
tree548367d458662ef6c329f5a3c0d3d90c632dc3cf
parentcbb0f5aa837f29f3152b794efd71e104c684244a (diff)
downloadroux-9db053d1b868b642c63bc7a324b78299756f6959.tar.gz
typo in isel (abi fuzzer)
-rw-r--r--lisc/isel.c2
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);