Don't switch on longs!
This commit is contained in:
parent
e203ddb7b6
commit
a6b6375985
|
@ -96,9 +96,11 @@ entity_p getentity(lnp, l_out)
|
|||
|
||||
/* Lor is a special case. */
|
||||
if (INSTR(lnp) == op_lor) {
|
||||
offset off = off_set(lnp);
|
||||
|
||||
en.en_static = FALSE;
|
||||
en.en_size = ps;
|
||||
switch (off_set(lnp)) {
|
||||
switch ((int) off == off ? (int) off : 3) {
|
||||
default:
|
||||
assert(FALSE);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue