summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/private-extern.c
blob: f3ffe5461d06d0a107a9c902bfa8e43f29eeda01 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: clang-cc -emit-llvm -o %t %s &&
// RUN: grep '@g0 = external hidden constant i32' %t &&
// RUN: grep '@g1 = hidden constant i32 1' %t

__private_extern__ const int g0;
__private_extern__ const int g1 = 1;

int f0(void) {
  return g0;
}
OpenPOWER on IntegriCloud