Make this test that we can drop the implementation keyword for llvm-as.
authorReid Spencer <rspencer@reidspencer.com>
Fri, 5 Jan 2007 17:29:41 +0000 (17:29 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Fri, 5 Jan 2007 17:29:41 +0000 (17:29 +0000)
llvm-upgrade is irrelevant for this test case.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32912 91177308-0d34-0410-b5e6-96231b3b80d8

test/Assembler/2002-05-02-ParseError.ll

index 22bcbc0c8154bdbbdffc03aba720fe33c9359d9b..d63784bd68837e3f7dfb9f53486d9cf28198127e 100644 (file)
@@ -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
 }