1 package com.sun.org.apache.bcel.internal.generic; 2 3 56 57 64 public class FCMPG extends Instruction 65 implements TypedInstruction, StackProducer, StackConsumer { 66 public FCMPG() { 67 super(com.sun.org.apache.bcel.internal.Constants.FCMPG, (short)1); 68 } 69 70 72 public Type getType(ConstantPoolGen cp) { 73 return Type.FLOAT; 74 } 75 76 77 85 public void accept(Visitor v) { 86 v.visitTypedInstruction(this); 87 v.visitStackProducer(this); 88 v.visitStackConsumer(this); 89 v.visitFCMPG(this); 90 } 91 } 92 | Popular Tags |