Re: [U-Boot] [PATCH] Don't do an undefined 32-bit shift on a 32-bit value for a long (4 byte) itest.l command.

2011-06-21 Thread Mike Frysinger
On Wed, Jun 15, 2011 at 19:10, Joshua Radel wrote: > Without this fix, the following statement erroneously echoed "true" (at least > on the microblaze architecture): > if itest.l 0 == 1; then echo "true"; else echo "false"; fi > > (using itest.w or itest.b worked as expected even without this chan

[U-Boot] [PATCH] Don't do an undefined 32-bit shift on a 32-bit value for a long (4 byte) itest.l command.

2011-06-15 Thread Joshua Radel
Without this fix, the following statement erroneously echoed "true" (at least on the microblaze architecture): if itest.l 0 == 1; then echo "true"; else echo "false"; fi (using itest.w or itest.b worked as expected even without this change) Signed-off-by: Josh Radel --- common/cmd_itest.c |