comparison graal/com.oracle.max.asmdis/src/com/sun/max/asm/gen/cisc/ia32/IA32TemplateCreator.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
28 /** 28 /**
29 */ 29 */
30 public class IA32TemplateCreator extends X86TemplateCreator<IA32Template> { 30 public class IA32TemplateCreator extends X86TemplateCreator<IA32Template> {
31 31
32 public IA32TemplateCreator() { 32 public IA32TemplateCreator() {
33 super(IA32Assembly.ASSEMBLY, WordWidth.BITS_32); 33 super(WordWidth.BITS_32);
34 } 34 }
35 35
36 @Override 36 @Override
37 protected IA32Template createTemplate(X86InstructionDescription instructionDescription, int serial, InstructionAssessment instructionFamily, X86TemplateContext context) { 37 protected IA32Template createTemplate(X86InstructionDescription instructionDescription, int serial, InstructionAssessment instructionFamily, X86TemplateContext context) {
38 return new IA32Template(instructionDescription, serial, instructionFamily, context); 38 return new IA32Template(instructionDescription, serial, instructionFamily, context);