diff options
author | Manman Ren <manman.ren@gmail.com> | 2013-08-21 22:20:53 +0000 |
---|---|---|
committer | Manman Ren <manman.ren@gmail.com> | 2013-08-21 22:20:53 +0000 |
commit | bf9d6e5c3743e873164765cbe38cc1bd10ee18ab (patch) | |
tree | c3f45b5fa047527d7c10bbb4b418a8ad0a5940ed /test/CodeGen/PowerPC/bdzlr.ll | |
parent | 23dcb187fb2a195ad7dbc35d3cee2c33edb7bfc3 (diff) | |
download | external_llvm-bf9d6e5c3743e873164765cbe38cc1bd10ee18ab.zip external_llvm-bf9d6e5c3743e873164765cbe38cc1bd10ee18ab.tar.gz external_llvm-bf9d6e5c3743e873164765cbe38cc1bd10ee18ab.tar.bz2 |
TBAA: remove !tbaa from testing cases when they are not needed.
This will make it easier to turn on struct-path aware TBAA since the metadata
format will change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188944 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/bdzlr.ll')
-rw-r--r-- | test/CodeGen/PowerPC/bdzlr.ll | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/test/CodeGen/PowerPC/bdzlr.ll b/test/CodeGen/PowerPC/bdzlr.ll index 656a858..e487558 100644 --- a/test/CodeGen/PowerPC/bdzlr.ll +++ b/test/CodeGen/PowerPC/bdzlr.ll @@ -35,15 +35,15 @@ for.body: ; preds = %for.body.for.body_c %0 = phi %struct.lua_TValue.17.692* [ undef, %for.body.lr.ph ], [ %.pre, %for.body.for.body_crit_edge ] %indvars.iv = phi i64 [ 0, %for.body.lr.ph ], [ %indvars.iv.next, %for.body.for.body_crit_edge ] %tt = getelementptr inbounds %struct.lua_TValue.17.692* %0, i64 %indvars.iv, i32 1 - %1 = load i32* %tt, align 4, !tbaa !0 - store i32 %1, i32* undef, align 4, !tbaa !0 + %1 = load i32* %tt, align 4 + store i32 %1, i32* undef, align 4 %indvars.iv.next = add i64 %indvars.iv, 1 %lftr.wideiv = trunc i64 %indvars.iv.next to i32 %exitcond = icmp eq i32 %lftr.wideiv, %n br i1 %exitcond, label %for.end, label %for.body.for.body_crit_edge for.body.for.body_crit_edge: ; preds = %for.body - %.pre = load %struct.lua_TValue.17.692** undef, align 8, !tbaa !3 + %.pre = load %struct.lua_TValue.17.692** undef, align 8 br label %for.body for.end: ; preds = %for.body, %if.end, %entry @@ -57,8 +57,3 @@ for.end: ; preds = %for.body, %if.end, } attributes #0 = { nounwind } - -!0 = metadata !{metadata !"int", metadata !1} -!1 = metadata !{metadata !"omnipotent char", metadata !2} -!2 = metadata !{metadata !"Simple C/C++ TBAA"} -!3 = metadata !{metadata !"any pointer", metadata !1} |