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