diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-01-06 20:46:58 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-01-06 20:46:58 +0000 |
commit | a8ede8ba8be076ae56b7c9ce9b4f2a115589543a (patch) | |
tree | 27891967931c9729b5ec3bc8dd5381d985db5a63 /target-i386/op.c | |
parent | 826461bb4068bab1c8fef6eb11117a260aa3e2c0 (diff) |
div64 fix - raise_interrupt() fix - SSE fix
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1202 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386/op.c')
-rw-r--r-- | target-i386/op.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/target-i386/op.c b/target-i386/op.c index f81d59b161..9ce2a5a2b7 100644 --- a/target-i386/op.c +++ b/target-i386/op.c @@ -611,11 +611,10 @@ void OPPROTO op_debug(void) void OPPROTO op_raise_interrupt(void) { - int intno; - unsigned int next_eip; + int intno, next_eip_addend; intno = PARAM1; - next_eip = PARAM2; - raise_interrupt(intno, 1, 0, next_eip); + next_eip_addend = PARAM2; + raise_interrupt(intno, 1, 0, next_eip_addend); } void OPPROTO op_raise_exception(void) |