mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
1b2050574d
llvm-svn: 17528
12 lines
238 B
LLVM
12 lines
238 B
LLVM
; 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...
|
|
; XFAIL: *
|
|
|
|
%T = type int *
|
|
|
|
%T %test() {
|
|
ret %T null
|
|
}
|