changeset 18765:924bf48a5d6a

SL: enable new DSL layout for SimpleLanguage.
author Christian Humer <christian.humer@gmail.com>
date Mon, 29 Dec 2014 23:39:12 +0100
parents ccb97347d874
children a720bf2e2f43
files graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/SLTypes.java
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/SLTypes.java	Mon Dec 29 23:39:07 2014 +0100
+++ b/graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/SLTypes.java	Mon Dec 29 23:39:12 2014 +0100
@@ -25,6 +25,7 @@
 import java.math.*;
 
 import com.oracle.truffle.api.dsl.*;
+import com.oracle.truffle.api.dsl.internal.*;
 import com.oracle.truffle.sl.*;
 import com.oracle.truffle.sl.runtime.*;
 
@@ -35,6 +36,7 @@
  * generated ones would not be sufficient.
  */
 @TypeSystem({long.class, BigInteger.class, boolean.class, String.class, SLFunction.class, SLNull.class})
+@DSLOptions(useNewLayout = true)
 public abstract class SLTypes {
 
     /**