comparison graal/com.oracle.max.asmdis/src/com/sun/max/asm/amd64/AMD64GeneralRegister8.java @ 4142:bc8527f3071c

Adjust code base to new level of warnings.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 18 Dec 2011 05:24:06 +0100
parents e233f5660da4
children
comparison
equal deleted inserted replaced
4141:04d21be7a24f 4142:bc8527f3071c
49 AH(4, true), 49 AH(4, true),
50 CH(5, true), 50 CH(5, true),
51 DH(6, true), 51 DH(6, true),
52 BH(7, true); 52 BH(7, true);
53 53
54 public static final Enumerator<AMD64GeneralRegister8> ENUMERATOR = new Enumerator<AMD64GeneralRegister8>(AMD64GeneralRegister8.class); 54 public static final Enumerator<AMD64GeneralRegister8> ENUMERATOR = new Enumerator<>(AMD64GeneralRegister8.class);
55 55
56 private final int value; 56 private final int value;
57 private final boolean isHighByte; 57 private final boolean isHighByte;
58 58
59 private AMD64GeneralRegister8(int value, boolean isHighByte) { 59 private AMD64GeneralRegister8(int value, boolean isHighByte) {