blob: b8e13a35548a42a037bb92c534e209aee0e54f89 [file] [log] [blame]
Chris Lattnere0fa3682004-03-08 02:12:36 +00001// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep constant
2
3extern const int a[]; // 'a' should be marked constant even though it's external!
4int foo () {
5 return a[0];
6}
7