On Friday 16 May 2008 13:12:19 Alberto Simões wrote:

> 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?

If 'make testj' passes on your platform without that conditional, commit away.

-- c

Reply via email to