URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [objc.dg/] [objc-nofilename-1.m] - Rev 841
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test to make sure that file name does not appear in the binary. */ /* { dg-do compile { target *-*-darwin* } } */ #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" } } */
Go to most recent revision | Compare with Previous | Blame | View Log