summaryrefslogtreecommitdiffstats
path: root/src/de/fernflower/code/instructions/IFGT.java
blob: b070d8b823622953b2e0660ae7cdbf962f594902 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package de.fernflower.code.instructions;

import java.io.DataOutputStream;
import java.io.IOException;

import de.fernflower.code.JumpInstruction;

public class IFGT extends JumpInstruction {

	public void writeToStream(DataOutputStream out, int offset) throws IOException {
		out.writeByte(opc_ifgt);
		out.writeShort(getOperand(0));
	}	

	public int length() {
		return 3;
	}
	
}