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