From 17c48f733744dab520f209500747d712f6b73742 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 2 May 2002 19:58:05 +0000 Subject: [PATCH] Simplify the testcase a bit git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2439 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Assembler/2002-05-02-ParseError.ll | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.34.1