diff options
-rw-r--r-- | test/Assembler/2002-05-02-ParseError.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Assembler/2002-05-02-ParseError.ll b/test/Assembler/2002-05-02-ParseError.ll index 3c2205d1fe..321393c3a5 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 |