[qfcc] Remove the internal error for null bool lists

It turns out that both lists can be null when applying short circuit
logic to constants.
This commit is contained in:
Bill Currie 2023-08-29 08:06:28 +09:00
parent d6ec250897
commit e4391992cb

View file

@ -191,7 +191,7 @@ merge (ex_list_t *l1, ex_list_t *l2)
ex_list_t *m;
if (!l1 && !l2)
internal_error (0, 0);
return 0;
if (!l2)
return l1;
if (!l1)