diff options
-rw-r--r-- | test/Linker/2005-02-12-ConstantGlobals.ll | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Linker/2005-02-12-ConstantGlobals.ll b/test/Linker/2005-02-12-ConstantGlobals.ll new file mode 100644 index 0000000000..3067b8032a --- /dev/null +++ b/test/Linker/2005-02-12-ConstantGlobals.ll @@ -0,0 +1,8 @@ +; Test that a prototype can be marked const, and the definition is allowed +; to be nonconst. + +; RUN: echo "%X = global int 7" | llvm-as > %t.2.bc +; RUN: llvm-as < %s > %t.1.bc +; RUN: llvm-link %t.[12].bc | llvm-dis | grep constant + +%X = external constant int |