From 7e83566529c0c9fd1882625e157ad53383fe3168 Mon Sep 17 00:00:00 2001 From: Space Meyer Date: Wed, 12 Apr 2023 12:24:46 +0200 Subject: executor: use explicit lretl in kvm_amd64.S Without this change the following warning is generated: kvm_amd64.S:95: Warning: no instruction mnemonic suffix given and no register operands; using default for `lret' This does not change the generated code in kvm_amd64.S.h --- executor/kvm_amd64.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'executor') diff --git a/executor/kvm_amd64.S b/executor/kvm_amd64.S index 537df853f..884f8262b 100644 --- a/executor/kvm_amd64.S +++ b/executor/kvm_amd64.S @@ -92,7 +92,7 @@ kvm_asm64_cpl3: movq $SEL_CS64_CPL3, 4(%rsp) movq $ADDR_STACK0, 8(%rsp) movq $SEL_DS64_CPL3, 12(%rsp) - lret + lretl kvm_asm64_cpl3_end: nop -- cgit mrf-deployment