diff options
author | Yaxun Liu <Yaxun.Liu@amd.com> | 2017-11-20 16:53:13 +0000 |
---|---|---|
committer | Yaxun Liu <Yaxun.Liu@amd.com> | 2017-11-20 16:53:13 +0000 |
commit | 45d25e12ab1153cd87f3b305470d3afd0c96a82f (patch) | |
tree | 6299af70923937e6150d0b2b2a750a1430903d58 | |
parent | a695e418f3a04069a2906b445b3a941b51259196 (diff) | |
download | bcm5719-llvm-45d25e12ab1153cd87f3b305470d3afd0c96a82f.tar.gz bcm5719-llvm-45d25e12ab1153cd87f3b305470d3afd0c96a82f.zip |
[AMDGPU] Update test r600.amdgpu-alias-analysis.ll
Manually update test r600.amdgpu-alias-analysis.ll for amdgiz environment
since it cannot be done by script.
The two pointers are swapped in the output because PrintResults in
AliasAnalysisEvaluator.cpp sorts the strings obtained from printAsOperand
before printing them.
Differential Revision: https://reviews.llvm.org/D40131
llvm-svn: 318660
-rw-r--r-- | llvm/test/CodeGen/AMDGPU/r600.amdgpu-alias-analysis.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/AMDGPU/r600.amdgpu-alias-analysis.ll b/llvm/test/CodeGen/AMDGPU/r600.amdgpu-alias-analysis.ll index 8956d113e8b..b2d6139ca3d 100644 --- a/llvm/test/CodeGen/AMDGPU/r600.amdgpu-alias-analysis.ll +++ b/llvm/test/CodeGen/AMDGPU/r600.amdgpu-alias-analysis.ll @@ -1,7 +1,7 @@ -; RUN: opt -mtriple=r600-- -O3 -aa-eval -print-all-alias-modref-info -disable-output < %s 2>&1 | FileCheck %s +; RUN: opt -mtriple=r600---amdgiz -O3 -aa-eval -print-all-alias-modref-info -disable-output < %s 2>&1 | FileCheck %s -; CHECK: NoAlias: i8 addrspace(7)* %p1, i8* %p +; CHECK: NoAlias: i8 addrspace(5)* %p, i8 addrspace(7)* %p1 -define amdgpu_kernel void @test(i8* %p, i8 addrspace(7)* %p1) { +define amdgpu_kernel void @test(i8 addrspace(5)* %p, i8 addrspace(7)* %p1) { ret void } |