URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gcc.dg/] [cleanup-6.c] - Rev 12
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O" } */ /* Verify that a cleanup marked "inline" gets inlined. */ static inline void xyzzy(void *p __attribute__((unused))) { } void doit(void) { int x __attribute__((cleanup (xyzzy))); } /* { dg-final { scan-assembler-not "xyzzy" } } */