Commit 6e01bdaedc3fc42c88672fafe960d3371dabb63e

Authored by bellard
1 parent 7d551702

cpu_abort() is really an abort

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4458 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 0 additions and 5 deletions
... ... @@ -1338,11 +1338,6 @@ void cpu_abort(CPUState *env, const char *fmt, ...)
1338 1338 vfprintf(stderr, fmt, ap);
1339 1339 fprintf(stderr, "\n");
1340 1340 #ifdef TARGET_I386
1341   - if(env->intercept & INTERCEPT_SVM_MASK) {
1342   - /* most probably the virtual machine should not
1343   - be shut down but rather caught by the VMM */
1344   - vmexit(SVM_EXIT_SHUTDOWN, 0);
1345   - }
1346 1341 cpu_dump_state(env, stderr, fprintf, X86_DUMP_FPU | X86_DUMP_CCOP);
1347 1342 #else
1348 1343 cpu_dump_state(env, stderr, fprintf, 0);
... ...