mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 08:36:06 +00:00

Conversion performed using the script at: https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34 These are only tests where no manual fixup was required.
44 lines
1.5 KiB
C++
44 lines
1.5 KiB
C++
// RUN: %clang_cc1 -triple x86_64-linux-gnu -emit-llvm -o - -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb %s | FileCheck %s --check-prefixes=CHECK,LIN
|
|
// RUN: %clang_cc1 -triple x86_64-windows-pc -emit-llvm -o - -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb %s | FileCheck %s --check-prefixes=CHECK,WIN
|
|
|
|
// LIN: @[[S1_NAME:.+]].ifunc = weak_odr ifunc void (ptr), ptr @[[S1_NAME]].resolver
|
|
// LIN: @[[S2_NAME:.+]].ifunc = weak_odr ifunc void (ptr), ptr @[[S2_NAME]].resolver
|
|
// WIN: $"[[S1_NAME:.+]]" = comdat any
|
|
// WIN: $"[[S2_NAME:.+]]" = comdat any
|
|
|
|
struct S1 {
|
|
void foo();
|
|
void mv();
|
|
};
|
|
|
|
void S1::foo(){}
|
|
|
|
__attribute__((cpu_dispatch(ivybridge, generic)))
|
|
void S1::mv() {}
|
|
// LIN: define weak_odr ptr @[[S1_NAME]].resolver
|
|
// WIN: define weak_odr dso_local void @"[[S1_NAME]]"(ptr
|
|
__attribute__((cpu_specific(generic)))
|
|
void S1::mv() {}
|
|
// CHECK: define dso_local {{.*}}void @{{\"?}}[[S1_NAME]].S{{\"?}}
|
|
// CHECK: define dso_local {{.*}}void @{{\"?}}[[S1_NAME]].A{{\"?}}
|
|
__attribute__((cpu_specific(ivybridge)))
|
|
void S1::mv() {}
|
|
|
|
struct S2 {
|
|
void foo();
|
|
void mv();
|
|
};
|
|
|
|
void S2::foo(){}
|
|
|
|
__attribute__((cpu_specific(generic)))
|
|
void S2::mv() {}
|
|
// CHECK: define dso_local {{.*}}void @{{\"?}}[[S2_NAME]].A{{\"?}}
|
|
__attribute__((cpu_dispatch(ivybridge, generic)))
|
|
void S2::mv() {}
|
|
// LIN: define weak_odr ptr @[[S2_NAME]].resolver
|
|
// WIN: define weak_odr dso_local void @"[[S2_NAME]]"(ptr
|
|
__attribute__((cpu_specific(ivybridge)))
|
|
void S2::mv() {}
|
|
// CHECK: define dso_local {{.*}}void @{{\"?}}[[S2_NAME]].S{{\"?}}
|