comparison graal/com.oracle.max.asmdis/src/com/sun/max/asm/gen/risc/RiscExternalInstruction.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
54 protected final ImmediateArgument address; 54 protected final ImmediateArgument address;
55 protected final AddressMapper addressMapper; 55 protected final AddressMapper addressMapper;
56 56
57 public RiscExternalInstruction(RiscTemplate template, List<Argument> arguments) { 57 public RiscExternalInstruction(RiscTemplate template, List<Argument> arguments) {
58 this.template = template; 58 this.template = template;
59 this.arguments = new LinkedList<Argument>(arguments); 59 this.arguments = new LinkedList<>(arguments);
60 this.address = null; 60 this.address = null;
61 this.addressMapper = null; 61 this.addressMapper = null;
62 } 62 }
63 63
64 public RiscExternalInstruction(RiscTemplate template, List<Argument> arguments, ImmediateArgument address, AddressMapper addressMapper) { 64 public RiscExternalInstruction(RiscTemplate template, List<Argument> arguments, ImmediateArgument address, AddressMapper addressMapper) {
65 this.template = template; 65 this.template = template;
66 this.arguments = new LinkedList<Argument>(arguments); 66 this.arguments = new LinkedList<>(arguments);
67 this.address = address; 67 this.address = address;
68 this.addressMapper = addressMapper; 68 this.addressMapper = addressMapper;
69 } 69 }
70 70
71 private String nameString; 71 private String nameString;