blob: 35ba90b13f87d968eedc6d4bc30acff2f1f7425b [file] [log] [blame]
// 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() {
}