On Mon, Jan 25, 2010 at 10:26, Mike Frysinger <[email protected]> wrote:
> 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 ...

oh, i guess you mean the new stuff doesnt compile:
arch/blackfin/kernel/ftrace-entry.S: Assembler messages:
arch/blackfin/kernel/ftrace-entry.S:29: Error:
arch/blackfin/kernel/ftrace-entry.S:29: Error: syntax error. Input text was !.
-mike
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to