Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.target / arc / firq-5.c
blob29f17a3f0ccc995004223e0b0866b8baf435869c
1 /* { dg-do compile } */
2 /* { dg-require-effective-target archs }*/
3 /* { dg-options "-O2 -mrgf-banked-regs=16" } */
5 /* Check if blink is pushed on the stack or not. */
7 extern void bar (void);
9 void __attribute__ ((interrupt("firq")))
10 handler1 (void)
12 bar ();
14 /* { dg-final { scan-assembler-not "push.*blink" } } */
15 /* { dg-final { scan-assembler-not "pop.*blink" } } */