00001 package de.fub.bytecode.generic;
00002
00003
00004
00005
00006
00007
00008
00009
00010 public class FCMPL extends Instruction
00011 implements TypedInstruction, StackProducer, StackConsumer {
00012 public FCMPL() {
00013 super(de.fub.bytecode.Constants.FCMPL, (short)1);
00014 }
00015
00016
00017
00018
00019
00020
00021
00022
00023 public void accept(Visitor v) {
00024 v.visitTypedInstruction(this);
00025 v.visitStackProducer(this);
00026 v.visitStackConsumer(this);
00027 v.visitFCMPL(this);
00028 }
00029
00030
00031 public Type getType(ConstantPoolGen cp) {
00032 return Type.FLOAT;
00033 }
00034 }