Re: [Qemu-devel] [RFC PATCH v2 05/39] target/i386: use prefix from DisasContext

2019-08-12 Thread Richard Henderson
On 8/10/19 5:12 AM, Jan Bobek wrote: > Reduce scope of the local variable prefixes to enforce use of prefix > from DisasContext instead. > > Signed-off-by: Jan Bobek > --- > target/i386/translate.c | 113 > 1 file changed, 57 insertions(+), 56 deletions(-

[Qemu-devel] [RFC PATCH v2 05/39] target/i386: use prefix from DisasContext

2019-08-09 Thread Jan Bobek
Reduce scope of the local variable prefixes to enforce use of prefix from DisasContext instead. Signed-off-by: Jan Bobek --- target/i386/translate.c | 113 1 file changed, 57 insertions(+), 56 deletions(-) diff --git a/target/i386/translate.c b/target/i3