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 22bcbc0c81..d63784bd68 100644 --- a/test/Assembler/2002-05-02-ParseError.ll +++ b/test/Assembler/2002-05-02-ParseError.ll @@ -1,10 +1,10 @@ -; RUN: llvm-upgrade < %s | llvm-as -o /dev/null -f +; RUN: llvm-as %s -o /dev/null -f ; This should parse correctly without an 'implementation', but our current YACC ; based parser doesn't have the required 2 token lookahead... -%T = type int * +%T = type i32 * -%T %test() { +define %T %test() { ret %T null } |