blob: 26b3fcede5ab0d98ef7a84101787f219119a03a1 [file] [log] [blame]
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
2
3// CHECK-DAG: @g0 = external hidden constant i32
4// CHECK-DAG: @g1 = hidden constant i32 1
Shih-wei Liaoea285162010-06-04 12:34:56 -07005
6__private_extern__ const int g0;
7__private_extern__ const int g1 = 1;
8
9int f0(void) {
10 return g0;
11}