comparison graal/GraalCompiler/src/com/sun/c1x/target/amd64/AMD64XirAssembler.java @ 2697:bd4c3be86fb7

Backend clean up.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 18 May 2011 15:14:55 +0200
parents 0ea5f12e873a
children d06cff53b77e
comparison
equal deleted inserted replaced
2696:c4201554beeb 2697:bd4c3be86fb7
192 case Nop: 192 case Nop:
193 case RawBytes: 193 case RawBytes:
194 case ShouldNotReachHere: 194 case ShouldNotReachHere:
195 break; 195 break;
196 default: 196 default:
197 throw Util.unimplemented("XIR operation " + i.op); 197 assert false : "Unknown XIR operation " + i.op;
198 } 198 }
199 if (!appended) { 199 if (!appended) {
200 currentList.add(i); 200 currentList.add(i);
201 } 201 }
202 } 202 }