From b74533ad4cce0fc5575e1b325f562dfa19c7f68e Mon Sep 17 00:00:00 2001 From: Blake Johnson Date: Sun, 10 Jan 2016 22:37:50 -0500 Subject: [PATCH] `boundscheck` to `inbounds` in comprehension lowering. --- src/julia-syntax.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/julia-syntax.scm b/src/julia-syntax.scm index 86a7c96f35eef..0a7a58c1dcc78 100644 --- a/src/julia-syntax.scm +++ b/src/julia-syntax.scm @@ -1878,9 +1878,9 @@ (if (null? ranges) `(block (= ,oneresult ,expr) ,@(if atype '() `((type_goto ,initlabl ,oneresult))) - (boundscheck false) + (inbounds false) (call (top setindex!) ,result ,oneresult ,ri) - (boundscheck pop) + (inbounds pop) (= ,ri (call (top +) ,ri 1))) `(block (= ,(car states) (call (top start) ,(car rv)))