rename the table
[oota-llvm.git] / test / Assembler / 2002-05-02-ParseError.ll
1 ; RUN: llvm-as < %s -o /dev/null -f
2
3 ; This should parse correctly without an 'implementation', but our current YACC
4 ; based parser doesn't have the required 2 token lookahead...
5 ; XFAIL: * 
6
7         %T = type int *
8
9 %T %test() {
10         ret %T null
11 }