view graal/com.oracle.truffle.sl.test/tests/Loop.sl @ 19769:e773cc48d3e8

Truffle-DSL: make specialization types mergable with other specialization types.
author Christian Humer <christian.humer@gmail.com>
date Wed, 11 Mar 2015 11:30:20 +0100
parents e34d5cca7496
children
line wrap: on
line source

function main() {  
  i = 0;  
  while (i < 1000) {  
    i = i + 1;  
  }  
  return i;  
}