blob: 407737287369cb4850497b058b6c1fe835bbd21f [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 Gohmanf17a25c2007-07-18 16:29:46 +00006; RUN: llvm-link %t.1.bc %t.2.bc | llvm-dis | grep {global i32 7}
7
Tanya Lattner003eae52008-03-10 07:21:50 +00008@X = external constant i32 ; <i32*> [#uses=0]