Home | History | Annotate | Download | only in NVPTX
      1 ; RUN: opt < %s -S -nvvm-reflect | FileCheck %s
      2 
      3 declare i32 @__nvvm_reflect(i8*)
      4 @str = private unnamed_addr addrspace(1) constant [11 x i8] c"__CUDA_FTZ\00"
      5 
      6 define i32 @foo() {
      7   %call = call i32 @__nvvm_reflect(i8* addrspacecast (i8 addrspace(1)* getelementptr inbounds ([11 x i8], [11 x i8] addrspace(1)* @str, i32 0, i32 0) to i8*))
      8   ; CHECK: ret i32 42
      9   ret i32 %call
     10 }
     11 
     12 !llvm.module.flags = !{!0}
     13 !0 = !{i32 4, !"nvvm-reflect-ftz", i32 42}
     14