summaryrefslogtreecommitdiff
path: root/test/FrontendC/2010-12-01-CommonGlobal.c
blob: 3f6d7e885807cc3e10a99cefe48fad1fef45edc2 (plain)
1
2
3
4
5
6
7
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
// Don't crash on a common-linkage constant global.
extern const int kABSourceTypeProperty;
int foo(void) {
  return kABSourceTypeProperty;
}
const int kABSourceTypeProperty;