1// REQUIRES: x86-64-registered-target
2// RUN: %clang -cc1 -triple x86_64-apple-darwin10  -g -S %s -o %t
3// RUN: FileCheck %s < %t
4
5//CHECK:         .asciz   "G"
6//CHECK-NEXT:    .long   0
7//CHECK-NEXT: Lpubtypes_end1:
8
9class G {
10public:
11	void foo();
12};
13
14void G::foo() {
15}
16