diff options
author | Chris Lattner <sabre@nondot.org> | 2005-02-12 19:14:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-02-12 19:14:11 +0000 |
commit | 6af31478ef03ea3a538258b37364a30708cf54a6 (patch) | |
tree | a025c11c5621561c6f2d6c918457b80b60ec437b | |
parent | 3b4f6c4a733470b427dd4e897d0bfc641b7dd7b5 (diff) | |
download | bcm5719-llvm-6af31478ef03ea3a538258b37364a30708cf54a6.tar.gz bcm5719-llvm-6af31478ef03ea3a538258b37364a30708cf54a6.zip |
Reinstate this test, it is correct after all.
llvm-svn: 20133
-rw-r--r-- | llvm/test/Regression/Linker/2005-02-12-ConstantGlobals.ll | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/test/Regression/Linker/2005-02-12-ConstantGlobals.ll b/llvm/test/Regression/Linker/2005-02-12-ConstantGlobals.ll new file mode 100644 index 00000000000..3067b8032a8 --- /dev/null +++ b/llvm/test/Regression/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 |