On Wed, May 4, 2011 at 2:25 PM, Gabe Black <gbl...@eecs.umich.edu> wrote:

> Did that make sense?


I see how that could work... I think I was more puzzled by how you would
figure out that

    for (int i = 0; i < 7; i++)
        Dest.bytes[i] = Source1.bytes[i] + Source2.bytes[i];

overwrote all of Dest, but

    for (int i = 0; i < 4; i++)
        Dest.bytes[i] = Source1.bytes[i] + Source2.bytes[i];

wouldn't... but looking back I see now that you'd expect to need manual
annotations in at least one of those cases.


> Do you think you'll be able to review those patches
> soonish?
>

I'll try... thanks for the reminder, that definitely increases the
probability :-).

Steve
_______________________________________________
m5-dev mailing list
m5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to