[AMDGPU][True16][CodeGen] true16 codegen pattern for v_med3_u/i16 (#121850)
[llvm-project.git] / clang / test / CodeGenCXX / attr-cpuspecific.cpp
blob225c6a5c742a5f4df3df346603b8545243a3ecc6
1 // RUN: %clang_cc1 -triple x86_64-linux-gnu -emit-llvm -o - %s | FileCheck %s --check-prefix=LINUX
2 // RUN: %clang_cc1 -triple x86_64-apple-macos -emit-llvm -o - %s | FileCheck %s --check-prefix=LINUX
3 // RUN: %clang_cc1 -triple x86_64-windows-pc -fms-compatibility -emit-llvm -o - %s | FileCheck %s --check-prefix=WINDOWS
5 struct S {
6 __attribute__((cpu_specific(atom)))
7 void Func(){}
8 __attribute__((cpu_dispatch(ivybridge,atom)))
9 void Func(){}
12 void foo() {
13 S s;
14 s.Func();
17 // LINUX: @_ZN1S4FuncEv = weak_odr alias void (ptr), ptr @_ZN1S4FuncEv.ifunc
18 // LINUX: @_ZN1S4FuncEv.ifunc = weak_odr ifunc void (ptr), ptr @_ZN1S4FuncEv.resolver
19 // LINUX: define weak_odr ptr @_ZN1S4FuncEv.resolver
20 // LINUX: ret ptr @_ZN1S4FuncEv.S
21 // LINUX: ret ptr @_ZN1S4FuncEv.O
22 // LINUX: declare void @_ZN1S4FuncEv.S
23 // LINUX: define linkonce_odr void @_ZN1S4FuncEv.O
25 // WINDOWS: define weak_odr dso_local void @"?Func@S@@QEAAXXZ"(ptr %0) comdat
26 // WINDOWS: musttail call void @"?Func@S@@QEAAXXZ.S"(ptr %0)
27 // WINDOWS: musttail call void @"?Func@S@@QEAAXXZ.O"(ptr %0)
28 // WINDOWS: declare dso_local void @"?Func@S@@QEAAXXZ.S"
29 // WINDOWS: define linkonce_odr dso_local void @"?Func@S@@QEAAXXZ.O"