aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/PowerPC/vec-abi-align.ll
diff options
context:
space:
mode:
authorHal Finkel <hfinkel@anl.gov>2013-09-12 23:23:12 +0000
committerHal Finkel <hfinkel@anl.gov>2013-09-12 23:23:12 +0000
commit8d7ed3be848841d0f64f0733c09da1b154a185a1 (patch)
treec11f2125b9f8d639ea025cca27ebc24c60206d01 /test/CodeGen/PowerPC/vec-abi-align.ll
parent6671cd4db079eb993f9bd340e0c33d61f0f27d81 (diff)
downloadexternal_llvm-8d7ed3be848841d0f64f0733c09da1b154a185a1.zip
external_llvm-8d7ed3be848841d0f64f0733c09da1b154a185a1.tar.gz
external_llvm-8d7ed3be848841d0f64f0733c09da1b154a185a1.tar.bz2
Remove unnecessary TBAA metadata from r190636's test case
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190637 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/vec-abi-align.ll')
-rw-r--r--test/CodeGen/PowerPC/vec-abi-align.ll22
1 files changed, 9 insertions, 13 deletions
diff --git a/test/CodeGen/PowerPC/vec-abi-align.ll b/test/CodeGen/PowerPC/vec-abi-align.ll
index 3d6129b..3239cf6 100644
--- a/test/CodeGen/PowerPC/vec-abi-align.ll
+++ b/test/CodeGen/PowerPC/vec-abi-align.ll
@@ -10,7 +10,7 @@ target triple = "powerpc64-unknown-linux-gnu"
; Function Attrs: nounwind
define void @test1(i64 %d1, i64 %d2, i64 %d3, i64 %d4, i64 %d5, i64 %d6, i64 %d7, i64 %d8, i64 %d9, <4 x float> inreg %vs.coerce) #0 {
entry:
- store <4 x float> %vs.coerce, <4 x float>* @ve, align 16, !tbaa !0
+ store <4 x float> %vs.coerce, <4 x float>* @ve, align 16
ret void
; CHECK-LABEL: @test1
@@ -22,11 +22,11 @@ entry:
define void @test2(i64 %d1, i64 %d2, i64 %d3, i64 %d4, i64 %d5, i64 %d6, i64 %d7, i64 %d8, %struct.s2* byval nocapture readonly %vs) #0 {
entry:
%m = getelementptr inbounds %struct.s2* %vs, i64 0, i32 0
- %0 = load i64* %m, align 8, !tbaa !2
- store i64 %0, i64* @n, align 8, !tbaa !2
+ %0 = load i64* %m, align 8
+ store i64 %0, i64* @n, align 8
%v = getelementptr inbounds %struct.s2* %vs, i64 0, i32 1
- %1 = load <4 x float>* %v, align 16, !tbaa !0
- store <4 x float> %1, <4 x float>* @ve, align 16, !tbaa !0
+ %1 = load <4 x float>* %v, align 16
+ store <4 x float> %1, <4 x float>* @ve, align 16
ret void
; CHECK-LABEL: @test2
@@ -41,11 +41,11 @@ entry:
define void @test3(i64 %d1, i64 %d2, i64 %d3, i64 %d4, i64 %d5, i64 %d6, i64 %d7, i64 %d8, i64 %d9, %struct.s2* byval nocapture readonly %vs) #0 {
entry:
%m = getelementptr inbounds %struct.s2* %vs, i64 0, i32 0
- %0 = load i64* %m, align 8, !tbaa !2
- store i64 %0, i64* @n, align 8, !tbaa !2
+ %0 = load i64* %m, align 8
+ store i64 %0, i64* @n, align 8
%v = getelementptr inbounds %struct.s2* %vs, i64 0, i32 1
- %1 = load <4 x float>* %v, align 16, !tbaa !0
- store <4 x float> %1, <4 x float>* @ve, align 16, !tbaa !0
+ %1 = load <4 x float>* %v, align 16
+ store <4 x float> %1, <4 x float>* @ve, align 16
ret void
; CHECK-LABEL: @test3
@@ -58,7 +58,3 @@ entry:
attributes #0 = { nounwind }
-!0 = metadata !{metadata !"omnipotent char", metadata !1}
-!1 = metadata !{metadata !"Simple C/C++ TBAA"}
-!2 = metadata !{metadata !"long", metadata !0}
-