mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
3a1dc32be9
R600 uses higher AS number to access kernel parameters Fixes: r298846 Differential Revision: https://reviews.llvm.org/D31520 llvm-svn: 299245
10 lines
340 B
LLVM
10 lines
340 B
LLVM
; RUN: opt -mtriple=amdgcn-- -O3 -aa-eval -print-all-alias-modref-info -disable-output < %s 2>&1 | FileCheck %s
|
|
; RUN: opt -mtriple=r600-- -O3 -aa-eval -print-all-alias-modref-info -disable-output < %s 2>&1 | FileCheck %s
|
|
|
|
; CHECK: NoAlias: i8 addrspace(1)* %p1, i8* %p
|
|
|
|
define void @test(i8* %p, i8 addrspace(1)* %p1) {
|
|
ret void
|
|
}
|
|
|