aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/Mips/zeroreg.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Mips/zeroreg.ll')
-rw-r--r--test/CodeGen/Mips/zeroreg.ll8
1 files changed, 2 insertions, 6 deletions
diff --git a/test/CodeGen/Mips/zeroreg.ll b/test/CodeGen/Mips/zeroreg.ll
index 79ed6091f8..e0e93e2e76 100644
--- a/test/CodeGen/Mips/zeroreg.ll
+++ b/test/CodeGen/Mips/zeroreg.ll
@@ -6,7 +6,7 @@ define i32 @foo0(i32 %s) nounwind readonly {
entry:
; CHECK: movn ${{[0-9]+}}, $zero
%tobool = icmp ne i32 %s, 0
- %0 = load i32* @g1, align 4, !tbaa !0
+ %0 = load i32* @g1, align 4
%cond = select i1 %tobool, i32 0, i32 %0
ret i32 %cond
}
@@ -15,11 +15,7 @@ define i32 @foo1(i32 %s) nounwind readonly {
entry:
; CHECK: movz ${{[0-9]+}}, $zero
%tobool = icmp ne i32 %s, 0
- %0 = load i32* @g1, align 4, !tbaa !0
+ %0 = load i32* @g1, align 4
%cond = select i1 %tobool, i32 %0, i32 0
ret i32 %cond
}
-
-!0 = metadata !{metadata !"int", metadata !1}
-!1 = metadata !{metadata !"omnipotent char", metadata !2}
-!2 = metadata !{metadata !"Simple C/C++ TBAA", null}