1 17 package org.apache.bcel.generic; 18 19 27 public class LMUL extends ArithmeticInstruction { 28 29 public LMUL() { 30 super(org.apache.bcel.Constants.LMUL); 31 } 32 33 34 42 public void accept( Visitor v ) { 43 v.visitTypedInstruction(this); 44 v.visitStackProducer(this); 45 v.visitStackConsumer(this); 46 v.visitArithmeticInstruction(this); 47 v.visitLMUL(this); 48 } 49 } 50 | Popular Tags |