comparison graal/GraalCompiler/src/com/sun/c1x/ir/ExceptionDispatch.java @ 2827:bd17ac598c6e

Graph cloning, initial version (not completely working)
author Lukas Stadler <lukas.stadler@jku.at>
date Mon, 30 May 2011 18:46:57 +0200
parents d3fc4fe063bf
children 14708c03abba
comparison
equal deleted inserted replaced
2821:015be60afcf3 2827:bd17ac598c6e
123 @Override 123 @Override
124 public String shortName() { 124 public String shortName() {
125 return "Dispatch " + catchType().name(); 125 return "Dispatch " + catchType().name();
126 } 126 }
127 127
128 128 @Override
129 public Node copy(Graph into) {
130 ExceptionDispatch x = new ExceptionDispatch(null, null, null, catchType, into);
131 x.setNonNull(isNonNull());
132 return x;
133 }
129 } 134 }