Re: [PATCH] x86 emulator: Fix nop emulation

2010-08-05 Thread Avi Kivity
On 08/04/2010 02:41 PM, Mohammed Gamal wrote: If a nop instruction is encountered, we jump directly to the done label. This skip updating rip. Break from the switch case instead Applied, thanks. I was sloppy there. -- error compiling committee.c: too many arguments to function -- To

[PATCH] x86 emulator: Fix nop emulation

2010-08-04 Thread Mohammed Gamal
If a nop instruction is encountered, we jump directly to the done label. This skip updating rip. Break from the switch case instead Signed-off-by: Mohammed Gamal m.gamal...@gmail.com --- arch/x86/kvm/emulate.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git