blob: b8e13a35548a42a037bb92c534e209aee0e54f89 [file] [log] [blame]
// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep constant
extern const int a[]; // 'a' should be marked constant even though it's external!
int foo () {
return a[0];
}