aboutsummaryrefslogtreecommitdiffstats
path: root/test/Feature
diff options
context:
space:
mode:
Diffstat (limited to 'test/Feature')
-rw-r--r--test/Feature/globalredefinition3.ll4
-rw-r--r--test/Feature/opaquetypes.ll2
2 files changed, 1 insertions, 5 deletions
diff --git a/test/Feature/globalredefinition3.ll b/test/Feature/globalredefinition3.ll
index bbac2e9..0183e5a 100644
--- a/test/Feature/globalredefinition3.ll
+++ b/test/Feature/globalredefinition3.ll
@@ -1,6 +1,4 @@
-; RUN: not llvm-as %s -o /dev/null -f |& grep \
-; RUN: "Redefinition of global variable named 'B'"
-; END.
+; RUN: not llvm-as %s -o /dev/null -f |& grep {redefinition of global '@B'}
@B = global i32 7
@B = global i32 7
diff --git a/test/Feature/opaquetypes.ll b/test/Feature/opaquetypes.ll
index 2ca58a7..6539c1a 100644
--- a/test/Feature/opaquetypes.ll
+++ b/test/Feature/opaquetypes.ll
@@ -7,7 +7,6 @@
;
%SQ1 = type { i32 }
-%ITy = type opaque
%SQ2 = type { %ITy }
%ITy = type i32
@@ -22,7 +21,6 @@ type %BBB
%Composite = type { %0, %1 }
; Test simple opaque type resolution...
-%intty = type opaque
%intty = type i32
; Perform a simple forward reference...