Simplify the testcase a bit
authorChris Lattner <sabre@nondot.org>
Thu, 2 May 2002 19:58:05 +0000 (19:58 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 2 May 2002 19:58:05 +0000 (19:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2439 91177308-0d34-0410-b5e6-96231b3b80d8

test/Assembler/2002-05-02-ParseError.ll

index 3c2205d1febd9027625d1b6de914315254eee617..321393c3a5cdc0a4ec2d2f7624d1a31d86c5e2f9 100644 (file)
@@ -1,10 +1,10 @@
 ; This should parse correctly without an 'implementation', but there seems to 
 ; be a problem...
 
-       %List = type { int, %List* }
+       %T = type int *
 
-%List* "test"()
+%T "test"()
 begin
-       ret %List* null
+       ret %T null
 end