view graal/com.oracle.truffle.sl.test/tests/CalcShell.input @ 18932:a4292401de0f

Ignore dontinline compile command if it would prevent application of forced substitutions.
author Roland Schatz <roland.schatz@oracle.com>
date Thu, 22 Jan 2015 16:35:37 +0100
parents b16ec83edc73
children
line wrap: on
line source

i
80
c
return cur + i;
r
c
if (i <= 2) { return 1; } else { return prev + cur; }
r
i
100
r
c
if (i == 0) { return 1; } else { return cur * i; }
r
x