Chris Lattner | 5b7dcaa | 2005-02-12 19:19:36 +0000 | [diff] [blame] | 1 | ; Test that a prototype can be marked const, and the definition is allowed |
| 2 | ; to be nonconst. |
| 3 | |
Chandler Carruth | 4177e6f | 2012-07-02 12:47:22 +0000 | [diff] [blame] | 4 | ; RUN: echo "@X = external constant i32" | llvm-as > %t.2.bc |
Reid Spencer | edca80b | 2007-04-15 18:11:57 +0000 | [diff] [blame] | 5 | ; RUN: llvm-as < %s > %t.1.bc |
Eli Bendersky | d7170ea | 2013-04-09 16:51:13 +0000 | [diff] [blame] | 6 | ; RUN: llvm-link %t.1.bc %t.2.bc -S | FileCheck %s |
| 7 | ; CHECK: global i32 7 |
Chris Lattner | 5b7dcaa | 2005-02-12 19:19:36 +0000 | [diff] [blame] | 8 | |
Reid Spencer | edca80b | 2007-04-15 18:11:57 +0000 | [diff] [blame] | 9 | @X = global i32 7 |