Fix Bug: Assembler/2003-05-12-MinIntProblem.llx
[oota-llvm.git] / test / Assembler / 2002-05-02-ParseError.ll
index 3c2205d1febd9027625d1b6de914315254eee617..44f97a0be0987d152c07fac4c172a19bcff8290a 100644 (file)
@@ -1,10 +1,8 @@
-; This should parse correctly without an 'implementation', but there seems to 
-; be a problem...
+; This should parse correctly without an 'implementation', but our current YACC
+; based parser doesn't have the required 2 token lookahead...
 
-       %List = type { int, %List* }
-
-%List* "test"()
-begin
-       ret %List* null
-end
+       %T = type int *
 
+%T %test() {
+       ret %T null
+}