[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenHIP / half.hip
blobd5dd43d51fdf76ec7d6ee0ab732e918e46dead9c
1 // REQUIRES: amdgpu-registered-target
2 // RUN: %clang_cc1 -triple amdgcn-amd-amdhsa -x hip -emit-llvm -fcuda-is-device -o - %s | FileCheck %s
4 #define __device__ __attribute__((device))
6 // CHECK-LABEL: @_Z2d0DF16_
7 // CHECK: fpext
8 __device__ float d0(_Float16 x) {
9   return x;
12 // CHECK-LABEL: @_Z2d1f
13 // CHECK: fptrunc
14 __device__ _Float16 d1(float x) {
15   return x;