comparison graal/GraalCompiler/src/com/sun/c1x/ir/Value.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 015be60afcf3
children bfce42cd9c07
comparison
equal deleted inserted replaced
2821:015be60afcf3 2827:bd17ac598c6e
56 this.kind = kind; 56 this.kind = kind;
57 } 57 }
58 58
59 /////////////// 59 ///////////////
60 // TODO: remove when Value class changes are completed 60 // TODO: remove when Value class changes are completed
61
62 @Override
63 public Node copy(Graph into) {
64 throw new UnsupportedOperationException();
65 }
66 61
67 @Override 62 @Override
68 protected Object clone() throws CloneNotSupportedException { 63 protected Object clone() throws CloneNotSupportedException {
69 throw new CloneNotSupportedException(); 64 throw new CloneNotSupportedException();
70 } 65 }