2016-04-06 02:26:20 +08:00
|
|
|
// RUN: %clang_cc1 -fcuda-is-device \
|
2016-05-10 08:34:50 +08:00
|
|
|
// RUN: -triple nvptx-nvidia-cuda -emit-llvm -o - %s | \
|
|
|
|
// RUN: FileCheck %s -check-prefix CHECK -check-prefix NOFTZ
|
2016-04-06 02:26:20 +08:00
|
|
|
// RUN: %clang_cc1 -fcuda-is-device -fcuda-flush-denormals-to-zero \
|
2016-05-10 08:34:50 +08:00
|
|
|
// RUN: -triple nvptx-nvidia-cuda -emit-llvm -o - %s | \
|
|
|
|
// RUN: FileCheck %s -check-prefix CHECK -check-prefix FTZ
|
2016-04-06 02:26:20 +08:00
|
|
|
|
|
|
|
#include "Inputs/cuda.h"
|
|
|
|
|
|
|
|
// Checks that device function calls get emitted with the "ntpvx-f32ftz"
|
|
|
|
// attribute set to "true" when we compile CUDA device code with
|
|
|
|
// -fcuda-flush-denormals-to-zero. Further, check that we reflect the presence
|
|
|
|
// or absence of -fcuda-flush-denormals-to-zero in a module flag.
|
|
|
|
|
2016-05-10 08:34:50 +08:00
|
|
|
// CHECK-LABEL: define void @foo() #0
|
2016-04-06 02:26:20 +08:00
|
|
|
extern "C" __device__ void foo() {}
|
|
|
|
|
|
|
|
// FTZ: attributes #0 = {{.*}} "nvptx-f32ftz"="true"
|
|
|
|
// NOFTZ-NOT: attributes #0 = {{.*}} "nvptx-f32ftz"
|
|
|
|
|
2017-05-20 09:29:55 +08:00
|
|
|
// FTZ:!llvm.module.flags = !{{{.*}}[[MODFLAG:![0-9]+]]}
|
2016-04-06 02:26:20 +08:00
|
|
|
// FTZ:[[MODFLAG]] = !{i32 4, !"nvvm-reflect-ftz", i32 1}
|
|
|
|
|
2017-05-20 09:29:55 +08:00
|
|
|
// NOFTZ:!llvm.module.flags = !{{{.*}}[[MODFLAG:![0-9]+]]}
|
2016-04-06 02:26:20 +08:00
|
|
|
// NOFTZ:[[MODFLAG]] = !{i32 4, !"nvvm-reflect-ftz", i32 0}
|