mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
Remove empty statements
Thanks to Laszlo Ersek for spotting the double semicolon in target/i386/kvm.c I have trivially grepped the tree for ';;' in C files. Suggested-by: Laszlo Ersek <lersek@redhat.com> Signed-off-by: Ladi Prosek <lprosek@redhat.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Cornelia Huck <cohuck@redhat.com> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
411ad78115
commit
3c254ab8d7
7 changed files with 7 additions and 7 deletions
|
@ -668,7 +668,7 @@ static void _decode_opc(DisasContext * ctx)
|
|||
return;
|
||||
case 0x6008: /* swap.b Rm,Rn */
|
||||
{
|
||||
TCGv low = tcg_temp_new();;
|
||||
TCGv low = tcg_temp_new();
|
||||
tcg_gen_ext16u_i32(low, REG(B7_4));
|
||||
tcg_gen_bswap16_i32(low, low);
|
||||
tcg_gen_deposit_i32(REG(B11_8), REG(B7_4), low, 0, 16);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue