diff options
author | Chris Lattner <sabre@nondot.org> | 2002-05-02 19:58:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-05-02 19:58:05 +0000 |
commit | 17c48f733744dab520f209500747d712f6b73742 (patch) | |
tree | 3788879d02eabd90eb1344eba2e06f322eda34c2 | |
parent | e23a7e99b37cedd0915b7011f182463e20374df5 (diff) |
Simplify the testcase a bit
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2439 91177308-0d34-0410-b5e6-96231b3b80d8
-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 |