comparison graal/com.oracle.max.asm/src/com/oracle/max/asm/target/amd64/X86InstructionDecoder.java @ 4249:1aaf3592e516

Fix some warnings from findbugs
author Gilles Duboscq <gilles.m.duboscq@gmail.com>
date Mon, 09 Jan 2012 14:05:12 +0100
parents bc8527f3071c
children 2f2c6347fce4
comparison
equal deleted inserted replaced
4246:b019b2ebe03e 4249:1aaf3592e516
28 private boolean targetIs64Bit; 28 private boolean targetIs64Bit;
29 private byte[] code; 29 private byte[] code;
30 private int currentEndOfInstruction; 30 private int currentEndOfInstruction;
31 private int currentDisplacementPosition; 31 private int currentDisplacementPosition;
32 32
33 private class Prefix { 33 private static class Prefix {
34 34
35 // segment overrides 35 // segment overrides
36 public static final int CSSegment = 0x2e; 36 public static final int CSSegment = 0x2e;
37 public static final int SSSegment = 0x36; 37 public static final int SSSegment = 0x36;
38 public static final int DSSegment = 0x3e; 38 public static final int DSSegment = 0x3e;