diff graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/expression/SLAddNode.java @ 18763:301fea50e42e

SL: migrate SL to use @GenerateNodeFactory.
author Christian Humer <christian.humer@gmail.com>
date Mon, 29 Dec 2014 23:39:03 +0100
parents 6fa518bf5d1b
children bf846a813688
line wrap: on
line diff
--- a/graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/expression/SLAddNode.java	Mon Dec 29 23:38:59 2014 +0100
+++ b/graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/expression/SLAddNode.java	Mon Dec 29 23:39:03 2014 +0100
@@ -38,8 +38,8 @@
  * Type specialization on the input values is essential for the performance. This is achieved via
  * node rewriting: specialized subclasses handle just a single type, so that the generic node that
  * can handle all types is used only in cases where different types were encountered. The subclasses
- * are automatically generated by the Truffle DSL. In addition, a {@link SLAddNodeFactory factory
- * class} is generated that provides, e.g., {@link SLAddNodeFactory#create node creation}.
+ * are automatically generated by the Truffle DSL. In addition, a {@link SLAddNodeGen factory class}
+ * is generated that provides, e.g., {@link SLAddNodeGen#create node creation}.
  */
 @NodeInfo(shortName = "+")
 public abstract class SLAddNode extends SLBinaryNode {