summaryrefslogtreecommitdiffstats
path: root/src/org/jetbrains/java/decompiler/code/instructions/IF_ICMPLT.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/jetbrains/java/decompiler/code/instructions/IF_ICMPLT.java')
-rw-r--r--src/org/jetbrains/java/decompiler/code/instructions/IF_ICMPLT.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/org/jetbrains/java/decompiler/code/instructions/IF_ICMPLT.java b/src/org/jetbrains/java/decompiler/code/instructions/IF_ICMPLT.java
new file mode 100644
index 0000000..107519e
--- /dev/null
+++ b/src/org/jetbrains/java/decompiler/code/instructions/IF_ICMPLT.java
@@ -0,0 +1,19 @@
+package org.jetbrains.java.decompiler.code.instructions;
+
+import java.io.DataOutputStream;
+import java.io.IOException;
+
+import org.jetbrains.java.decompiler.code.JumpInstruction;
+
+public class IF_ICMPLT extends JumpInstruction {
+
+ public void writeToStream(DataOutputStream out, int offset) throws IOException {
+ out.writeByte(opc_if_icmplt);
+ out.writeShort(getOperand(0));
+ }
+
+ public int length() {
+ return 3;
+ }
+
+}