Re: [Qemu-devel] [PATCH] [ARM] Fix C-flag for ASR when shift==0

2007-05-19 Thread Aurelien Jarno
Aurelien Jarno a écrit : > Matthew Howkins a écrit : >> There is a bug in the ARM emulation of data-processing instructions with >> ASR when the shift==0. The current QEMU CVS incorrectly modifies >> the C-flag, when it should be preserved. >> >> The attached patch corrects this. >> > > This patc

Re: [Qemu-devel] [PATCH] [ARM] Fix C-flag for ASR when shift==0

2007-04-02 Thread Aurelien Jarno
Matthew Howkins a écrit : > There is a bug in the ARM emulation of data-processing instructions with > ASR when the shift==0. The current QEMU CVS incorrectly modifies > the C-flag, when it should be preserved. > > The attached patch corrects this. > This patch is consistent with the reference

[Qemu-devel] [PATCH] [ARM] Fix C-flag for ASR when shift==0

2007-02-11 Thread Matthew Howkins
There is a bug in the ARM emulation of data-processing instructions with ASR when the shift==0. The current QEMU CVS incorrectly modifies the C-flag, when it should be preserved. The attached patch corrects this. Matthew Index: target-arm/op.c ==