Changeset 17045 in vbox for trunk/src/recompiler_new/target-i386/op_helper.c
- Timestamp:
- Feb 24, 2009 8:44:48 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler_new/target-i386/op_helper.c
r17044 r17045 1032 1032 env->eflags &= ~(TF_MASK | VM_MASK | RF_MASK | NT_MASK); 1033 1033 #else 1034 /* 1035 * We must clear VIP/VIF too on interrupt entry, as otherwise FreeBSD 1036 * gets confused by seeingingly changed EFLAGS. See #3491 and 1037 * public bug #2341. 1038 */ 1034 1039 env->eflags &= ~(TF_MASK | VM_MASK | RF_MASK | NT_MASK | VIF_MASK | VIP_MASK); 1035 1040 #endif … … 1303 1308 env->eflags &= ~(TF_MASK | VM_MASK | RF_MASK | NT_MASK); 1304 1309 #else 1310 /* 1311 * We must clear VIP/VIF too on interrupt entry, as otherwise FreeBSD 1312 * gets confused by seeingingly changed EFLAGS. See #3491 and 1313 * public bug #2341. 1314 */ 1305 1315 env->eflags &= ~(TF_MASK | VM_MASK | RF_MASK | NT_MASK | VIF_MASK | VIP_MASK); 1306 1316 #endif
Note:
See TracChangeset
for help on using the changeset viewer.