Hi, Folks.There are a few files on the parrot source where the compiler complains about a logic value that is always true.
Let us check a specific case:
on src/jit_emit.h:231,
if (!base && !(i && scale) && (!emit_is8bit(disp) || 1)) {
This is exactly
if (!base && !(i && scale)) {
Now, is there any good reason for that brilliant piece of code?
Cheers
Alberto
--
Alberto Simões - Departamento de Informática - Universidade do Minho
Campus de Gualtar - 4710-057 Braga - Portugal
