blob: d63784bd68837e3f7dfb9f53486d9cf28198127e [file] [log] [blame]
Reid Spencer280e6462007-01-05 17:29:41 +00001; RUN: llvm-as %s -o /dev/null -f
Tanya Lattnere7e3f2e2004-11-06 22:07:09 +00002
Chris Lattner42289a32003-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 Lattnere23a7e92002-05-02 19:54:58 +00005
Reid Spencer280e6462007-01-05 17:29:41 +00006%T = type i32 *
Chris Lattnere23a7e92002-05-02 19:54:58 +00007
Reid Spencer280e6462007-01-05 17:29:41 +00008define %T %test() {
Chris Lattner17c48f72002-05-02 19:58:05 +00009 ret %T null
Chris Lattner42289a32003-03-06 19:59:08 +000010}