// RUN: %clang_cc1 -emit-llvm -triple %itanium_abi_triple -o - %s | FileCheck %s
;
const A x;
// CHECK: @_ZL1x = internal global
;
int
// CHECK: @x2 = {{(dso_local )?}}constant
extern const X x2;
const X x2 = ;
;
;
// CHECK: @x2b = {{(dso_local )?}}global
extern const X2 x2b;
const X2 x2b = ;