You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
389 B
13 lines
389 B
; RUN: llvm-as -data-layout=A5 < %s | llvm-dis | FileCheck %s
|
|
; RUN: llc -mtriple amdgcn-amd-amdhsa < %s
|
|
; RUN: llvm-as -data-layout=A5 < %s | llc -mtriple amdgcn-amd-amdhsa
|
|
; RUN: opt -data-layout=A5 -S < %s
|
|
; RUN: llvm-as -data-layout=A5 < %s | opt -S
|
|
|
|
; CHECK: %tmp = alloca i32, align 4, addrspace(5)
|
|
define amdgpu_kernel void @test() {
|
|
%tmp = alloca i32, addrspace(5)
|
|
ret void
|
|
}
|
|
|