Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / cleanup-6.c
blob4e3d53893afc7d39f1335039f293f099e53c8023
1 /* { dg-do compile } */
2 /* { dg-options "-O" } */
3 /* Verify that a cleanup marked "inline" gets inlined. */
5 static inline void xyzzy(void *p __attribute__((unused)))
9 void doit(void)
11 int x __attribute__((cleanup (xyzzy)));
14 /* { dg-final { scan-assembler-not "xyzzy" } } */