Re: [Qemu-devel] [PATCH] tweak lookup_feature() in target-i386/cpu.c

2013-04-01 Thread Igor Mammedov
On Sat, 30 Mar 2013 10:01:21 +0800 "Michael W. Bombardieri" wrote: > Hi, > > The following patch removes variable 'found' from lookup_feature(). > We can just return true/false (found/not found) directly. > Does this look OK? We are aiming to remove lookup_feature() and related feature tables, s

[Qemu-devel] [PATCH] tweak lookup_feature() in target-i386/cpu.c

2013-03-29 Thread Michael W. Bombardieri
Hi, The following patch removes variable 'found' from lookup_feature(). We can just return true/false (found/not found) directly. Does this look OK? - Michael diff --git a/target-i386/cpu.c b/target-i386/cpu.c index a0640db..9147aaf 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -319