diff options
| author | Space Meyer <spm@google.com> | 2023-04-12 12:24:46 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2023-04-12 13:09:12 +0200 |
| commit | 7e83566529c0c9fd1882625e157ad53383fe3168 (patch) | |
| tree | ef8bf9758c15808ebe3ec79fcc86f093ff40071b /executor/kvm_amd64.S | |
| parent | 75e2c2fabf2aeb95cfa2822e4e9cdff8978b7b38 (diff) | |
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
Diffstat (limited to 'executor/kvm_amd64.S')
| -rw-r--r-- | executor/kvm_amd64.S | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
