You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.205
Former-commit-id: 7f59f7e792705db773f1caecdaa823092f4e2927
This commit is contained in:
parent
5cd5df71cc
commit
8e12397d70
29
external/llvm/test/MC/X86/intel-syntax-unsized-memory.s
vendored
Normal file
29
external/llvm/test/MC/X86/intel-syntax-unsized-memory.s
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
// RUN: llvm-mc -triple x86_64-unknown-unknown -x86-asm-syntax=intel -mcpu=knl %s | FileCheck %s
|
||||
|
||||
// Check that we deduce unsized memory operands in the general, unambiguous, case.
|
||||
// We can't deduce xword memory operands, because there is no instruction
|
||||
// unambiguously accessing 80-bit memory.
|
||||
|
||||
// CHECK: movb %al, (%rax)
|
||||
mov [rax], al
|
||||
|
||||
// CHECK: movw %ax, (%rax)
|
||||
mov [rax], ax
|
||||
|
||||
// CHECK: movl %eax, (%rax)
|
||||
mov [rax], eax
|
||||
|
||||
// CHECK: movq %rax, (%rax)
|
||||
mov [rax], rax
|
||||
|
||||
// CHECK: movdqa %xmm0, (%rax)
|
||||
movdqa [rax], xmm0
|
||||
|
||||
// CHECK: vmovdqa %ymm0, (%rax)
|
||||
vmovdqa [rax], ymm0
|
||||
|
||||
// CHECK: vaddps (%rax), %zmm1, %zmm1
|
||||
vaddps zmm1, zmm1, [rax]
|
||||
|
||||
// CHECK: leal 1(%r15d), %r9d
|
||||
lea r9d, [r15d+1]
|
Reference in New Issue
Block a user