KVM: x86 emulator: whitespace cleanups
Clean up lines longer than 80 columns. No code changes. Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
@@ -363,10 +363,22 @@ struct gprefix {
|
|||||||
#define emulate_1op_rax_rdx(_op, _src, _rax, _rdx, _eflags) \
|
#define emulate_1op_rax_rdx(_op, _src, _rax, _rdx, _eflags) \
|
||||||
do { \
|
do { \
|
||||||
switch((_src).bytes) { \
|
switch((_src).bytes) { \
|
||||||
case 1: __emulate_1op_rax_rdx(_op, _src, _rax, _rdx, _eflags, "b"); break; \
|
case 1: \
|
||||||
case 2: __emulate_1op_rax_rdx(_op, _src, _rax, _rdx, _eflags, "w"); break; \
|
__emulate_1op_rax_rdx(_op, _src, _rax, _rdx, \
|
||||||
case 4: __emulate_1op_rax_rdx(_op, _src, _rax, _rdx, _eflags, "l"); break; \
|
_eflags, "b"); \
|
||||||
case 8: ON64(__emulate_1op_rax_rdx(_op, _src, _rax, _rdx, _eflags, "q")); break; \
|
break; \
|
||||||
|
case 2: \
|
||||||
|
__emulate_1op_rax_rdx(_op, _src, _rax, _rdx, \
|
||||||
|
_eflags, "w"); \
|
||||||
|
break; \
|
||||||
|
case 4: \
|
||||||
|
__emulate_1op_rax_rdx(_op, _src, _rax, _rdx, \
|
||||||
|
_eflags, "l"); \
|
||||||
|
break; \
|
||||||
|
case 8: \
|
||||||
|
ON64(__emulate_1op_rax_rdx(_op, _src, _rax, _rdx, \
|
||||||
|
_eflags, "q")); \
|
||||||
|
break; \
|
||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user