blob: 6db153f679fbe0ceecb0f1478895ec592a7a4d5e [file] [log] [blame]
/* APPLE LOCAL file 4327263 */
/* Test to make sure that file name does not appear in the binary. */
/* { dg-do compile } */
#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" } } */