mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
17566f954b
Summary: With isSingleValueType starting to treat vector types as single-value types, code that uses this interface needs to be updated. Test Plan: vector-global.ll nvcl-param-align.ll Reviewers: jholewinski Reviewed By: jholewinski Subscribers: llvm-commits, meheff, eliben, jholewinski Differential Revision: http://reviews.llvm.org/D6573 llvm-svn: 224440
10 lines
377 B
LLVM
10 lines
377 B
LLVM
; RUN: llc < %s -march=nvptx64 -mcpu=sm_20 | FileCheck %s
|
|
|
|
target datalayout = "e-i64:64-v16:16-v32:32-n16:32:64"
|
|
target triple = "nvptx64-nvidia-cuda"
|
|
|
|
@g1 = external global <4 x i32> ; external global variable
|
|
; CHECK: .extern .global .align 16 .b8 g1[16];
|
|
@g2 = global <4 x i32> zeroinitializer ; module-level global variable
|
|
; CHECK: .visible .global .align 16 .b8 g2[16];
|