Remove support for parsing the "type i32" syntax for defining a numbered
[oota-llvm.git] / test / Assembler / 2007-08-06-AliasInvalid.ll
index 0711e037a6743d6b04e5a47172ceb388e70bcea7..94095982468c86783b920452a9a3f5d7901f3487 100644 (file)
@@ -1,7 +1,9 @@
-; RUN: llvm-as < %s > /dev/null |& grep {Invalid type for reference to global}
+; RUN: not llvm-as < %s > /dev/null |& grep {expected top-level entity}
 ; PR1577
 
-@anInt = global i32 1 alias i32 @anAlias
+@anInt = global i32 1 
+alias i32 @anAlias
+
 define i32 @main() {
    ret i32 0 
 }