view graal/com.oracle.truffle.sl.test/tests/Null.sl @ 18468:6014e40b07f8

SPARC: fix deoptimization rescue slot handling.
author Josef Eisl <josef.eisl@jku.at>
date Wed, 19 Nov 2014 17:31:31 +0100
parents b16ec83edc73
children
line wrap: on
line source

/* The easiest way to generate null: a function without a return statement implicitly returns null. */
function null() {
}

function main() {  
  println(null());  
  println(null() == null());  
  println(null() != null());  
  println(null() == 42);  
  println(null() != 42);  
  println(null() == "42");  
  println(null() != "42");  
}