Fix bogus test.

Fixes: #90
This commit is contained in:
David Given 2018-06-05 09:20:46 +09:00
parent b8cb840c12
commit 342a321c87

View file

@ -24,7 +24,7 @@ STATIC void showinstr(line_p lnp)
* can occur in expressions that are going to be eliminated are
* properly handled.
*/
if (INSTR(lnp) < sp_fmnem && INSTR(lnp) > sp_lmnem) {
if (INSTR(lnp) < sp_fmnem || INSTR(lnp) > sp_lmnem) {
fprintf(stderr,"*** ?\n");
return;
}