# HG changeset patch # User Christian Humer # Date 1365438521 -7200 # Node ID 8b9ea2f5c36e14fccdfe8522a0b538f3dc4ac5fc # Parent bd067a48a9c20117f238d27be88081e87d7b3b5d Removed guards from NodeData. diff -r bd067a48a9c2 -r 8b9ea2f5c36e graal/com.oracle.truffle.codegen.processor/src/com/oracle/truffle/codegen/processor/node/NodeData.java --- a/graal/com.oracle.truffle.codegen.processor/src/com/oracle/truffle/codegen/processor/node/NodeData.java Mon Apr 08 18:17:53 2013 +0200 +++ b/graal/com.oracle.truffle.codegen.processor/src/com/oracle/truffle/codegen/processor/node/NodeData.java Mon Apr 08 18:28:41 2013 +0200 @@ -46,7 +46,6 @@ private List specializations; private List specializationListeners; - private List guards; private List executableTypes; private List shortCircuits; @@ -64,7 +63,6 @@ this.nodeType = splitSource.nodeType; this.specializations = splitSource.specializations; this.specializationListeners = splitSource.specializationListeners; - this.guards = splitSource.guards; this.executableTypes = splitSource.executableTypes; this.shortCircuits = splitSource.shortCircuits; this.fields = splitSource.fields; @@ -93,9 +91,6 @@ if (specializationListeners != null) { children.addAll(specializationListeners); } - if (guards != null) { - children.addAll(guards); - } if (executableTypes != null) { children.addAll(executableTypes); } @@ -412,10 +407,6 @@ return specializationListeners; } - public List getGuards() { - return guards; - } - public List getExecutableTypes() { return executableTypes; } @@ -437,10 +428,6 @@ this.specializationListeners = specializationListeners; } - void setGuards(List guards) { - this.guards = guards; - } - void setExecutableTypes(List executableTypes) { this.executableTypes = executableTypes; }