diff options
author | liguang <lig.fnst@cn.fujitsu.com> | 2013-05-28 16:21:10 +0800 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2013-06-15 17:50:38 +0000 |
commit | 90a2541b763b31d2b551b07e24aae3de5266d31b (patch) | |
tree | bcf77f34004a3498ff42a971fb2a1a2b0d00b6f4 /target-i386/svm_helper.c | |
parent | 0bc60a8ae076402fbdbd2d6334bbe6ea88b428ff (diff) |
target-i386: fix over 80 chars warnings
Signed-off-by: liguang <lig.fnst@cn.fujitsu.com>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-i386/svm_helper.c')
-rw-r--r-- | target-i386/svm_helper.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/target-i386/svm_helper.c b/target-i386/svm_helper.c index e18fa35907..4a7de42b35 100644 --- a/target-i386/svm_helper.c +++ b/target-i386/svm_helper.c @@ -658,8 +658,10 @@ void helper_vmexit(CPUX86State *env, uint32_t exit_code, uint64_t exit_info_1) R_DS); env->eip = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.rip)); - env->regs[R_ESP] = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.rsp)); - env->regs[R_EAX] = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.rax)); + env->regs[R_ESP] = ldq_phys(env->vm_hsave + + offsetof(struct vmcb, save.rsp)); + env->regs[R_EAX] = ldq_phys(env->vm_hsave + + offsetof(struct vmcb, save.rax)); env->dr[6] = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.dr6)); env->dr[7] = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.dr7)); |