mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 20:06:06 +00:00

The tests that failed on a windows host have been fixed. Original message: Start setting dso_local for COFF. With this there are still some GVs where we don't set dso_local because setGVProperties is never called. I intend to fix that in followup commits. This is just the bare minimum to teach shouldAssumeDSOLocal what it should do for COFF. llvm-svn: 325940
35 lines
909 B
C
35 lines
909 B
C
// REQUIRES: x86-registered-target
|
|
// RUN: %clang_cc1 %s -triple x86_64-pc-windows-msvc -target-cpu skylake-avx512 -fasm-blocks -emit-llvm -o - | FileCheck %s
|
|
|
|
void t1() {
|
|
// CHECK: @t1
|
|
// CHECK: call void asm sideeffect inteldialect "vaddpd zmm8, zmm27, zmm6", "~{zmm8},~{dirflag},~{fpsr},~{flags}"()
|
|
// CHECK: ret void
|
|
__asm {
|
|
vaddpd zmm8, zmm27, zmm6
|
|
}
|
|
}
|
|
|
|
|
|
void t2() {
|
|
// CHECK: @t2
|
|
// CHECK: call void asm sideeffect inteldialect "vaddpd zmm8 {k1}, zmm27, zmm6", "~{zmm8},~{dirflag},~{fpsr},~{flags}"()
|
|
// CHECK: ret void
|
|
__asm {
|
|
vaddpd zmm8 {k1}, zmm27, zmm6
|
|
}
|
|
}
|
|
|
|
void ignore_fe_size() {
|
|
// CHECK-LABEL: define dso_local void @ignore_fe_size()
|
|
char c;
|
|
// CHECK: vaddps xmm1, xmm2, $1{1to4}
|
|
__asm vaddps xmm1, xmm2, [c]{1to4}
|
|
// CHECK: vaddps xmm1, xmm2, $2
|
|
__asm vaddps xmm1, xmm2, [c]
|
|
// CHECK: mov eax, $3
|
|
__asm mov eax, [c]
|
|
// CHECK: mov $0, rax
|
|
__asm mov [c], rax
|
|
}
|