Use StringMap instead of std::map<std::string, SDNode*>.
[oota-llvm.git] / test / Feature / opaquetypes.ll
index 1873a00af9e82b38507efb0374d3bb224ce8aa65..2ca58a7922bee63e08ef3228a30f949cedcde286 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llvm-as %s -o - | llvm-dis > %t1.ll
+; RUN: llvm-as < %s | llvm-dis > %t1.ll
 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
 ; RUN: diff %t1.ll %t2.ll
 
@@ -6,10 +6,10 @@
 ; and recursive types.  Oh my.
 ; 
 
-%SQ1 = type { int }
+%SQ1 = type { i32 }
 %ITy = type opaque
 %SQ2 = type { %ITy }
-%ITy = type int
+%ITy = type i32
 
 
 %CCC = type { \2* }
@@ -23,10 +23,10 @@ type %BBB
 
 ; Test simple opaque type resolution...
 %intty = type opaque
-%intty = type int
+%intty = type i32
 
 ; Perform a simple forward reference...
-%ty1 = type { %ty2, int }
+%ty1 = type { %ty2, i32 }
 %ty2 = type float
 
 ; Do a recursive type...
@@ -55,7 +55,3 @@ type %BBB
 %Y1 = type { { \3 * }, \2 * }
 %Z1 = type { { \3 * }, [12x\3] *, { { { \5 * } } } }
 
-implementation
-
-
-