1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00
llvm-mirror/test/CodeGen/AMDGPU/r600.amdgpu-alias-analysis.ll
Matt Arsenault eee97093c8 AMDGPU: Fix r600 test
llvm-svn: 341898
2018-09-11 04:39:16 +00:00

8 lines
263 B
LLVM

; RUN: opt -mtriple=r600-- -O3 -aa-eval -print-all-alias-modref-info -disable-output < %s 2>&1 | FileCheck %s
; CHECK: MayAlias: i8 addrspace(5)* %p, i8 addrspace(7)* %p1
define amdgpu_kernel void @test(i8 addrspace(5)* %p, i8 addrspace(7)* %p1) {
ret void
}