blob: 60f176b053415567e00c0881f2d7cd1dc99ae9dc [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; Test that a prototype can be marked const, and the definition is allowed
2; to be nonconst.
3
4; RUN: echo {@X = global i32 7} | llvm-as > %t.2.bc
Tanya Lattner003eae52008-03-10 07:21:50 +00005; RUN: llvm-as < %s > %t.1.bc
Dan Gohman0682a462009-09-15 15:38:31 +00006; RUN: llvm-link %t.1.bc %t.2.bc -S | grep {global i32 7}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007
Tanya Lattner003eae52008-03-10 07:21:50 +00008@X = external constant i32 ; <i32*> [#uses=0]