remove '(' (never used, don't remember what it was intended for) and add

'b' (bind), 's' (state) and 'c' (call) to get_op_string.
This commit is contained in:
Bill Currie 2001-11-05 19:11:03 +00:00
parent 54ddb94132
commit 9b784e331b

View file

@ -210,12 +210,14 @@ get_op_string (int op)
case '!': return "!"; case '!': return "!";
case SHL: return "<<"; case SHL: return "<<";
case SHR: return ">>"; case SHR: return ">>";
case '(': return "(";
case '.': return "."; case '.': return ".";
case 'i': return "<if>"; case 'i': return "<if>";
case 'n': return "<ifnot>"; case 'n': return "<ifnot>";
case 'g': return "<goto>"; case 'g': return "<goto>";
case 'r': return "<return>"; case 'r': return "<return>";
case 'b': return "<bind>";
case 's': return "<state>";
case 'c': return "<call>";
default: return "unknown"; default: return "unknown";
} }
} }