• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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:        .long   Lset6
6//CHECK-NEXT:   .long
7//CHECK-NEXT:   .asciz   "H"
8//CHECK-NEXT:   .long   0
9//CHECK-NEXT:   Lpubtypes_end1:
10
11@interface H
12-(void) foo;
13@end
14
15@implementation H
16-(void) foo {
17}
18@end
19
20