Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Linker / 2005-02-12-ConstantGlobals.ll
blobc1b2bbb2dde62617718618bd755df6b97b27185d
1 ; Test that a prototype can be marked const, and the definition is allowed
2 ; to be nonconst.
4 ; RUN: echo "@X = global i32 7" | llvm-as > %t.2.bc
5 ; RUN: llvm-as < %s > %t.1.bc
6 ; RUN: llvm-link %t.1.bc %t.2.bc -S | FileCheck %s
7 ; CHECK: global i32 7
9 @X = external constant i32              ; <ptr> [#uses=0]