summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/debug-info-pubtypes.cpp
blob: 35ba90b13f87d968eedc6d4bc30acff2f1f7425b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// REQUIRES: x86-64-registered-target
// RUN: %clang -cc1 -triple x86_64-apple-darwin10  -g -S %s -o %t
// RUN: FileCheck %s < %t

//CHECK:         .asciz   "G"
//CHECK-NEXT:    .long   0
//CHECK-NEXT: Lpubtypes_end1:

class G {
public:
	void foo();
};

void G::foo() {
}
OpenPOWER on IntegriCloud