[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / aarch64-attr-mode-float.c
blobfebea3174cb05cfce5cc981ce2bbfb8999f84774
1 // RUN: %clang_cc1 -triple arm64-none-linux-gnu -emit-llvm %s -o - | FileCheck %s
3 typedef float f16a __attribute((mode(HF)));
4 typedef double f16b __attribute((mode(HF)));
5 typedef float f32a __attribute((mode(SF)));
6 typedef double f32b __attribute((mode(SF)));
7 typedef float f64a __attribute((mode(DF)));
8 typedef double f64b __attribute((mode(DF)));
9 f16b tmp;
11 // CHECK: define{{.*}} ptr @f16_test(ptr noundef {{.*}})
12 // CHECK: store half {{.*}}, ptr @tmp, align 2
13 // CHECK: ret ptr @tmp
14 f16b *f16_test(f16a *x) {
15 tmp = *x + *x;
16 return &tmp;
19 // CHECK: define{{.*}} float @f32_test(float noundef {{.*}})
20 // CHECK: ret float {{.*}}
21 f32b f32_test(f32a x) {
22 return x + x;
25 // CHECK: define{{.*}} double @f64_test(double noundef {{.*}})
26 // CHECK: ret double {{.*}}
27 f64b f64_test(f64a x) {
28 return x + x;