diff options
author | Manman Ren <mren@apple.com> | 2013-04-30 17:52:57 +0000 |
---|---|---|
committer | Manman Ren <mren@apple.com> | 2013-04-30 17:52:57 +0000 |
commit | 1a5ff287fd9c65c848409ce860eac8cfabd42eed (patch) | |
tree | 228c005b31c009eadd0009b1b11f0787d503291b /llvm/test/Transforms/LoopVectorize/i8-induction.ll | |
parent | e36d3416abbd1eeb3567834a4c2b05d727a979da (diff) | |
download | bcm5719-llvm-1a5ff287fd9c65c848409ce860eac8cfabd42eed.tar.gz bcm5719-llvm-1a5ff287fd9c65c848409ce860eac8cfabd42eed.zip |
TBAA: remove !tbaa from testing cases if not used.
This will make it easier to turn on struct-path aware TBAA since the metadata
format will change.
llvm-svn: 180796
Diffstat (limited to 'llvm/test/Transforms/LoopVectorize/i8-induction.ll')
-rw-r--r-- | llvm/test/Transforms/LoopVectorize/i8-induction.ll | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/llvm/test/Transforms/LoopVectorize/i8-induction.ll b/llvm/test/Transforms/LoopVectorize/i8-induction.ll index 7759b7085a1..2a0e8264549 100644 --- a/llvm/test/Transforms/LoopVectorize/i8-induction.ll +++ b/llvm/test/Transforms/LoopVectorize/i8-induction.ll @@ -8,8 +8,8 @@ target triple = "x86_64-apple-macosx10.8.0" define void @f() nounwind uwtable ssp { scalar.ph: - store i8 0, i8* inttoptr (i64 1 to i8*), align 1, !tbaa !0 - %0 = load i8* @a, align 1, !tbaa !0 + store i8 0, i8* inttoptr (i64 1 to i8*), align 1 + %0 = load i8* @a, align 1 br label %for.body for.body: @@ -26,10 +26,6 @@ for.body: br i1 %phitmp14, label %for.body, label %for.end for.end: ; preds = %for.body - store i8 %mul, i8* @b, align 1, !tbaa !0 + store i8 %mul, i8* @b, align 1 ret void } - -!0 = metadata !{metadata !"omnipotent char", metadata !1} -!1 = metadata !{metadata !"Simple C/C++ TBAA"} - |