Skip to content

Commit

Permalink
Fix bug in register encoding for 64bit signal handler.
Browse files Browse the repository at this point in the history
Part of MRP-43, x86_64 fixes by DaFeng.
  • Loading branch information
captain5050 committed Jun 16, 2011
1 parent 9b46c93 commit ba3c078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/bootloader/sysSignal_Intel.c
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ EXTERNAL void setupDeliverHardwareException(void *context, Address vmRegisters,
vmr_gprs[Constants_EBP] = IA32_EBP(context);
#ifdef __x86_64__
vmr_gprs[Constants_R8] = IA32_R8(context);
vmr_gprs[Constants_R8] = IA32_R9(context);
vmr_gprs[Constants_R9] = IA32_R9(context);
vmr_gprs[Constants_R10] = IA32_R10(context);
vmr_gprs[Constants_R11] = IA32_R11(context);
vmr_gprs[Constants_R12] = IA32_R12(context);
Expand Down

0 comments on commit ba3c078

Please sign in to comment.