1 // RUN: %clang_cc1 -emit-llvm -triple %itanium_abi_triple -o - %s | FileCheck %s
10 // CHECK: @_ZL1x = internal global
16 int add(int x
, int y
) { return x
+ y
; }
18 // CHECK: @x2 = {{(dso_local )?}}constant
20 const X x2
= { &add
};
30 // CHECK: @x2b = {{(dso_local )?}}global
32 const X2 x2b
= { { { 1 }, { 2 }, { 3 } } };