shithub: mc

Download patch

ref: 5459f323de18b77a80351857af55cdb4181a7c06
parent: d4b87f186552008f45bb413e423e05523f1857f4
author: Ori Bernstein <[email protected]>
date: Tue May 8 16:15:22 EDT 2012

Real instructions for jl/jg

    There's no such thing as jlt, jgt. Fix.

--- a/8/insns.def
+++ b/8/insns.def
@@ -45,9 +45,9 @@
 Insn(Ijmp,      "\tjmp %v\n",                   0)
 Insn(Ijz,       "\tjz %v\n",                    0)
 Insn(Ijnz,      "\tjnz %v\n",                   0)
-Insn(Ijlt,      "\tjlt %v\n",                   0)
+Insn(Ijl,       "\tjl %v\n",                    0)
 Insn(Ijle,      "\tjle %v\n",                   0)
-Insn(Ijgt,      "\tjgt %v\n",                   0)
+Insn(Ijg,       "\tjg %v\n",                    0)
 Insn(Ijge,      "\tjge %v\n",                   0)
 Insn(Iret,      "\tret\n",                      0)