# HG changeset patch # User Christian Humer # Date 1389122477 -3600 # Node ID dbc17f07cec625be0981b65e701e09d277f3ae01 # Parent b466199f19e1859459d92778c711ba17b8488be8 Truffle-DSL: fixed missing field in copy constructor of ParamterSpec. diff -r b466199f19e1 -r dbc17f07cec6 graal/com.oracle.truffle.dsl.processor/src/com/oracle/truffle/dsl/processor/template/ParameterSpec.java --- 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; }