mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
This requires corresponding clang change. Differential Revision: https://reviews.llvm.org/D40955 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@324101 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
366 B
LLVM
10 lines
366 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 addrspace(5)* %p
|
|
|
|
define void @test(i8 addrspace(5)* %p, i8 addrspace(1)* %p1) {
|
|
ret void
|
|
}
|
|
|