diff options
author | Manman Ren <manman.ren@gmail.com> | 2013-09-30 18:17:35 +0000 |
---|---|---|
committer | Manman Ren <manman.ren@gmail.com> | 2013-09-30 18:17:35 +0000 |
commit | aef1b378242dee5f17e440344258460e1dedbb4b (patch) | |
tree | ebdbe838400bd944498bca4a393e9cc5b4b97ec3 /test/CodeGen/R600/store.ll | |
parent | bdf8015cffb1860776e5a5f28014b023a32ab1bc (diff) | |
download | external_llvm-aef1b378242dee5f17e440344258460e1dedbb4b.zip external_llvm-aef1b378242dee5f17e440344258460e1dedbb4b.tar.gz external_llvm-aef1b378242dee5f17e440344258460e1dedbb4b.tar.bz2 |
TBAA: remove !tbaa from testing cases when they are not needed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191689 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/R600/store.ll')
-rw-r--r-- | test/CodeGen/R600/store.ll | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/test/CodeGen/R600/store.ll b/test/CodeGen/R600/store.ll index 341c427..f70faa0 100644 --- a/test/CodeGen/R600/store.ll +++ b/test/CodeGen/R600/store.ll @@ -268,17 +268,13 @@ entry: ; SI-CHECK: BUFFER_STORE_DWORDX2 define void @vecload2(i32 addrspace(1)* nocapture %out, i32 addrspace(2)* nocapture %mem) #0 { entry: - %0 = load i32 addrspace(2)* %mem, align 4, !tbaa !5 + %0 = load i32 addrspace(2)* %mem, align 4 %arrayidx1.i = getelementptr inbounds i32 addrspace(2)* %mem, i64 1 - %1 = load i32 addrspace(2)* %arrayidx1.i, align 4, !tbaa !5 - store i32 %0, i32 addrspace(1)* %out, align 4, !tbaa !5 + %1 = load i32 addrspace(2)* %arrayidx1.i, align 4 + store i32 %0, i32 addrspace(1)* %out, align 4 %arrayidx1 = getelementptr inbounds i32 addrspace(1)* %out, i64 1 - store i32 %1, i32 addrspace(1)* %arrayidx1, align 4, !tbaa !5 + store i32 %1, i32 addrspace(1)* %arrayidx1, align 4 ret void } attributes #0 = { nounwind "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!5 = metadata !{metadata !"int", metadata !6} -!6 = metadata !{metadata !"omnipotent char", metadata !7} -!7 = metadata !{metadata !"Simple C/C++ TBAA"} |