mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-23 19:59:57 +00:00
8c5dadb1d8
Summary: Previously the NVVMReflect pass would read its configuration from command-line flags or a static configuration given to the pass at instantiation time. This doesn't quite work for clang's use-case. It needs to pass a value for __CUDA_FTZ down on a per-module basis. We use a module flag for this, so the NVVMReflect pass needs to be updated to read said flag. Reviewers: tra, rnk Subscribers: cfe-commits, jholewinski Differential Revision: http://reviews.llvm.org/D18672 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265090 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
450 B
LLVM
14 lines
450 B
LLVM
; RUN: opt < %s -S -nvvm-reflect | FileCheck %s
|
|
|
|
declare i32 @__nvvm_reflect(i8*)
|
|
@str = private unnamed_addr addrspace(1) constant [11 x i8] c"__CUDA_FTZ\00"
|
|
|
|
define i32 @foo() {
|
|
%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*))
|
|
; CHECK: ret i32 42
|
|
ret i32 %call
|
|
}
|
|
|
|
!llvm.module.flags = !{!0}
|
|
!0 = !{i32 4, !"nvvm-reflect-ftz", i32 42}
|