Make this test that we can drop the implementation keyword for llvm-as.

llvm-upgrade is irrelevant for this test case.

llvm-svn: 32912
This commit is contained in:
Reid Spencer 2007-01-05 17:29:41 +00:00
parent 6acdd1973d
commit 0ea405d0eb
1 changed files with 3 additions and 3 deletions

View 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
}