blob: b23337d634cbe8ff3f6699b664ebc2b4fe6ca60a [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
Eli Friedman20e098b2009-12-11 21:23:03 +00002
3struct A {
4 A() { x = 10; }
5 int x;
6};
7
8const A x;
9
Sean Hunt31455252010-01-24 03:04:27 +000010// CHECK: @_ZL1x = internal global
Douglas Gregorda550742011-05-07 22:06:45 +000011
12struct X {
13 int (*fp)(int, int);
14};
15
16int add(int x, int y) { return x + y; }
17
18// CHECK: @x2 = constant
19extern const X x2;
20const X x2 = { &add };