From: Chris Lattner Date: Thu, 2 May 2002 19:58:05 +0000 (+0000) Subject: Simplify the testcase a bit X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=17c48f733744dab520f209500747d712f6b73742;p=oota-llvm.git Simplify the testcase a bit git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2439 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Assembler/2002-05-02-ParseError.ll b/test/Assembler/2002-05-02-ParseError.ll index 3c2205d1feb..321393c3a5c 100644 --- a/test/Assembler/2002-05-02-ParseError.ll +++ b/test/Assembler/2002-05-02-ParseError.ll @@ -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