aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Mips/eh.ll
diff options
context:
space:
mode:
authorManman Ren <mren@apple.com>2013-04-30 17:52:57 +0000
committerManman Ren <mren@apple.com>2013-04-30 17:52:57 +0000
commit2dc50d306752c8672d1543feb88517705cdb25e7 (patch)
tree51b8265d04997616227031ee01b2fda343c46589 /test/CodeGen/Mips/eh.ll
parent8960a5c63db0d4f1e6ad794ea626c68de9313dbf (diff)
downloadexternal_llvm-2dc50d306752c8672d1543feb88517705cdb25e7.zip
external_llvm-2dc50d306752c8672d1543feb88517705cdb25e7.tar.gz
external_llvm-2dc50d306752c8672d1543feb88517705cdb25e7.tar.bz2
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180796 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Mips/eh.ll')
-rw-r--r--test/CodeGen/Mips/eh.ll8
1 files changed, 2 insertions, 6 deletions
diff --git a/test/CodeGen/Mips/eh.ll b/test/CodeGen/Mips/eh.ll
index d14150a..fc9e2ef 100644
--- a/test/CodeGen/Mips/eh.ll
+++ b/test/CodeGen/Mips/eh.ll
@@ -18,7 +18,7 @@ entry:
%exception = tail call i8* @__cxa_allocate_exception(i32 8) nounwind
%0 = bitcast i8* %exception to double*
- store double 3.200000e+00, double* %0, align 8, !tbaa !0
+ store double 3.200000e+00, double* %0, align 8
invoke void @__cxa_throw(i8* %exception, i8* bitcast (i8** @_ZTId to i8*), i8* null) noreturn
to label %unreachable unwind label %lpad
@@ -39,7 +39,7 @@ catch: ; preds = %lpad
%4 = bitcast i8* %3 to double*
%exn.scalar = load double* %4, align 8
%add = fadd double %exn.scalar, %i2
- store double %add, double* @g1, align 8, !tbaa !0
+ store double %add, double* @g1, align 8
tail call void @__cxa_end_catch() nounwind
ret void
@@ -61,7 +61,3 @@ declare void @__cxa_throw(i8*, i8*, i8*)
declare i8* @__cxa_begin_catch(i8*)
declare void @__cxa_end_catch()
-
-!0 = metadata !{metadata !"double", metadata !1}
-!1 = metadata !{metadata !"omnipotent char", metadata !2}
-!2 = metadata !{metadata !"Simple C/C++ TBAA", null}