blob: 22bcbc0c8154bdbbdffc03aba720fe33c9359d9b [file] [log] [blame]
Reid Spencer107b4b72006-12-02 20:34:08 +00001; RUN: llvm-upgrade < %s | llvm-as -o /dev/null -f
Tanya Lattner32f81a52004-11-06 22:07:09 +00002
Chris Lattner81e92fe2003-03-06 19:59:08 +00003; This should parse correctly without an 'implementation', but our current YACC
4; based parser doesn't have the required 2 token lookahead...
Chris Lattnered1228a2002-05-02 19:54:58 +00005
Reid Spencer107b4b72006-12-02 20:34:08 +00006%T = type int *
Chris Lattnered1228a2002-05-02 19:54:58 +00007
Chris Lattner81e92fe2003-03-06 19:59:08 +00008%T %test() {
Chris Lattner3f6b8332002-05-02 19:58:05 +00009 ret %T null
Chris Lattner81e92fe2003-03-06 19:59:08 +000010}