changeset 13534:dbc17f07cec6

Truffle-DSL: fixed missing field in copy constructor of ParamterSpec.
author Christian Humer <christian.humer@gmail.com>
date Tue, 07 Jan 2014 20:21:17 +0100
parents b466199f19e1
children e8ef44830b50
files graal/com.oracle.truffle.dsl.processor/src/com/oracle/truffle/dsl/processor/template/ParameterSpec.java
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.truffle.dsl.processor/src/com/oracle/truffle/dsl/processor/template/ParameterSpec.java	Tue Jan 07 20:16:01 2014 +0100
+++ b/graal/com.oracle.truffle.dsl.processor/src/com/oracle/truffle/dsl/processor/template/ParameterSpec.java	Tue Jan 07 20:21:17 2014 +0100
@@ -57,6 +57,7 @@
         this.local = o.local;
         this.typeDefinition = o.typeDefinition;
         this.execution = o.execution;
+        this.signature = o.signature;
         this.allowedTypes = allowedTypes;
     }