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/Transforms/LoopVectorize/debugloc.ll | |
parent | bdf8015cffb1860776e5a5f28014b023a32ab1bc (diff) | |
download | external_llvm-aef1b378242dee5f17e440344258460e1dedbb4b.tar.gz external_llvm-aef1b378242dee5f17e440344258460e1dedbb4b.tar.bz2 external_llvm-aef1b378242dee5f17e440344258460e1dedbb4b.zip |
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/Transforms/LoopVectorize/debugloc.ll')
-rw-r--r-- | test/Transforms/LoopVectorize/debugloc.ll | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/Transforms/LoopVectorize/debugloc.ll b/test/Transforms/LoopVectorize/debugloc.ll index be67520454..0cc0de6bf3 100644 --- a/test/Transforms/LoopVectorize/debugloc.ll +++ b/test/Transforms/LoopVectorize/debugloc.ll @@ -33,7 +33,7 @@ for.body: ; preds = %for.body.lr.ph, %fo %indvars.iv = phi i64 [ 0, %for.body.lr.ph ], [ %indvars.iv.next, %for.body ] %sum.05 = phi i32 [ 0, %for.body.lr.ph ], [ %add, %for.body ] %arrayidx = getelementptr inbounds i32* %a, i64 %indvars.iv, !dbg !22 - %0 = load i32* %arrayidx, align 4, !dbg !22, !tbaa !23 + %0 = load i32* %arrayidx, align 4, !dbg !22 %add = add i32 %0, %sum.05, !dbg !22 tail call void @llvm.dbg.value(metadata !{i32 %add.lcssa}, i64 0, metadata !15), !dbg !22 %indvars.iv.next = add i64 %indvars.iv, 1, !dbg !21 @@ -86,7 +86,4 @@ attributes #1 = { nounwind readnone } !20 = metadata !{i32 4, i32 0, metadata !4, null} !21 = metadata !{i32 5, i32 0, metadata !17, null} !22 = metadata !{i32 6, i32 0, metadata !17, null} -!23 = metadata !{metadata !"int", metadata !24} -!24 = metadata !{metadata !"omnipotent char", metadata !25} -!25 = metadata !{metadata !"Simple C/C++ TBAA"} !26 = metadata !{i32 7, i32 0, metadata !4, null} |