aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/objc.dg/objc-nofilename-1.m
blob: 3ddaa6431ec0b1dd21d018fde8c73a90932e10a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Test to make sure that file name does not appear in the binary. */
/* { dg-do compile { target *-*-darwin* } } */
/* { dg-additional-options "-Wno-objc-root-class" } */

#include <objc/objc.h>

@interface Foo { Class isa; } @end
@implementation Foo @end

@interface Bar : Foo { Class Barisa; } @end

@implementation Bar : Foo @end;

@interface FINAL : Bar { Class FINALisa; } @end

@implementation FINAL : Bar @end;

int main(int argc, char **argv)
{
     return 0;
}

/* { dg-final { scan-assembler-not "objc-nofilename-1.m" } } */