blob: b8e13a35548a42a037bb92c534e209aee0e54f89 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +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