URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [darwin-20040812-1.c] - Rev 823
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test dead code strip support. */ /* Contributed by Devang Patel <dpatel@apple.com> */ /* { dg-do compile { target *-*-darwin* } } */ const char my_version_string[] __attribute__((__used__)) = "Do not remove this string\n"; static int __attribute__((__used__)) static_debug_routine() { int i; i = 42; } int main () { return 0; } /* { dg-final { scan-assembler ".no_dead_strip _my_version_string" } } */ /* { dg-final { scan-assembler ".no_dead_strip _static_debug_routine" } } */
Go to most recent revision | Compare with Previous | Blame | View Log