Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenCUDA / long-double.cu
blobd52de972ea3da4e9aaf4c2fed0e4423ae003ec0a
1 // RUN: %clang_cc1 -triple amdgcn-amd-amdhsa -target-cpu gfx906 \
2 // RUN:   -aux-triple x86_64-unknown-gnu-linux -fcuda-is-device \
3 // RUN:   -emit-llvm -o - -x hip %s 2>&1 | FileCheck %s
5 // RUN: %clang_cc1 -triple nvptx \
6 // RUN:   -aux-triple x86_64-unknown-gnu-linux -fcuda-is-device \
7 // RUN:   -emit-llvm -o - %s 2>&1 | FileCheck %s
9 // CHECK: @_ZN15infinity_helperIeE5valueE = {{.*}} double 0x47EFFFFFD586B834,{{.*}} align 8
10 // CHECK: @size = {{.*}} i32 8
12 #include "Inputs/cuda.h"
14 template <class> struct infinity_helper {};
15 template <> struct infinity_helper<long double> { static constexpr long double value = 3.4028234e38L; };
16 constexpr long double infinity_helper<long double>::value;
17 __device__ int size = sizeof(long double);