You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.205
Former-commit-id: 7f59f7e792705db773f1caecdaa823092f4e2927
This commit is contained in:
parent
5cd5df71cc
commit
8e12397d70
12
external/llvm/test/CodeGen/NVPTX/global-addrspace.ll
vendored
Normal file
12
external/llvm/test/CodeGen/NVPTX/global-addrspace.ll
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s --check-prefix=PTX32
|
||||
; RUN: llc < %s -march=nvptx64 -mcpu=sm_20 | FileCheck %s --check-prefix=PTX64
|
||||
|
||||
; PTX32: .visible .global .align 4 .u32 i;
|
||||
; PTX32: .visible .const .align 4 .u32 j;
|
||||
; PTX32: .visible .shared .align 4 .u32 k;
|
||||
; PTX64: .visible .global .align 4 .u32 i;
|
||||
; PTX64: .visible .const .align 4 .u32 j;
|
||||
; PTX64: .visible .shared .align 4 .u32 k;
|
||||
@i = addrspace(1) externally_initialized global i32 0, align 4
|
||||
@j = addrspace(4) externally_initialized global i32 0, align 4
|
||||
@k = addrspace(3) global i32 undef, align 4
|
Reference in New Issue
Block a user