On Mon, Jan 25, 2010 at 01:24, Li Yi wrote:
> On Sun, 2010-01-24 at 23:44 -0500, [email protected] wrote:
>>       r3 = [p1];
>> -     cc = r3 == 0;
>> +     cc = r3 != 0;
>>       if cc jump _ftrace_stub (bp);
>
> Do you mean:
>
> cc = r3 == 0;
> if !cc jump _ftrace_stub (bp);

they should be equivalent

if (r3 != 0) jump ...
if !(r3 == 0) jump ...
-mike
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to