executor: remove unused kvm_asm64_vm86

-Wunused-const-variable shows it.
No idea now if it should be used or not,
seems to be the same as kvm_asm32_paged_vm86.
So let's just remove it.
This commit is contained in:
Dmitry Vyukov 2019-01-17 10:51:56 +01:00
parent 04aed72692
commit 43689bcfed
4 changed files with 0 additions and 15 deletions

View File

@ -50,18 +50,6 @@ kvm_asm32_paged_vm86:
kvm_asm32_paged_vm86_end:
nop
.global kvm_asm64_vm86, kvm_asm64_vm86_end
kvm_asm64_vm86:
.code32
mov %cr0, %eax
or $0x80000000, %eax
mov %eax, %cr0
mov $SEL_TSS32, %ax
ltr %ax
ljmp $SEL_TSS32_VM86, $0
kvm_asm64_vm86_end:
nop
.global kvm_asm16_cpl3, kvm_asm16_cpl3_end
kvm_asm16_cpl3:
.code16

File diff suppressed because one or more lines are too long

View File

@ -24,7 +24,6 @@ int main()
PRINT(kvm_asm32_paged);
PRINT(kvm_asm32_vm86);
PRINT(kvm_asm32_paged_vm86);
PRINT(kvm_asm64_vm86);
PRINT(kvm_asm64_enable_long);
PRINT(kvm_asm64_init_vm);
PRINT(kvm_asm64_vm_exit);

File diff suppressed because one or more lines are too long