Changeset 9669 in vbox
- Timestamp:
- Jun 12, 2008 7:26:45 PM (17 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Disassembler/DisasmTables.cpp
r9285 r9669 54 54 //!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 55 55 56 #ifndef DIS_CORE_ONLY 56 57 static char SZINVALID_OPCODE[] = "Invalid Opcode"; 58 #endif 57 59 58 60 #define INVALID_OPCODE \ -
trunk/src/VBox/Disassembler/DisasmTablesX64.cpp
r8999 r9669 54 54 //!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 55 55 56 #ifndef DIS_CORE_ONLY 56 57 static char SZINVALID_OPCODE[] = "Invalid Opcode"; 58 #endif 57 59 58 60 #define INVALID_OPCODE \ -
trunk/src/VBox/VMM/PGM.cpp
r9661 r9669 2649 2649 rc = PGM_SHW_NAME_AMD64(InitData)( pVM, pModeData, fResolveGCAndR0); AssertRCReturn(rc, rc); 2650 2650 } 2651 break; 2652 default: 2653 AssertFailed(); 2651 2654 break; 2652 2655 } -
trunk/src/VBox/VMM/VMMR0/HWACCMR0.cpp
r9421 r9669 636 636 HWACCMR0DECL(int) HWACCMR0InitVM(PVM pVM) 637 637 { 638 int rc = VINF_SUCCESS;639 640 638 AssertReturn(pVM, VERR_INVALID_PARAMETER); 641 639 … … 680 678 HWACCMR0DECL(int) HWACCMR0TermVM(PVM pVM) 681 679 { 682 int rc = VINF_SUCCESS;683 684 680 AssertReturn(pVM, VERR_INVALID_PARAMETER); 685 681 … … 701 697 HWACCMR0DECL(int) HWACCMR0SetupVM(PVM pVM) 702 698 { 703 int rc = VINF_SUCCESS;704 705 699 AssertReturn(pVM, VERR_INVALID_PARAMETER); 706 700 -
trunk/src/VBox/VMM/VMMSwitcher/PAEand32Bit.mac
r9420 r9669 237 237 %endif 238 238 mov eax, cr0 239 and eax, ~X86_CR0_PG239 and eax, (~X86_CR0_PG) & 0xffffffff ; prevent yasm warning 240 240 mov cr0, eax 241 241 DEBUG_CHAR('4') … … 759 759 %endif 760 760 mov eax, cr0 761 and eax, ~X86_CR0_PG761 and eax, (~X86_CR0_PG) & 0xffffffff ; prevent yasm warning 762 762 mov cr0, eax 763 763 DEBUG_CHAR('2')
Note:
See TracChangeset
for help on using the changeset viewer.