summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/interrupt-10.c
blob: b025a614c11133d32b6b0909c7402fd1839424aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { dg-do compile } */
/* { dg-options "-O2 -mno-mpx -mno-sse -mno-mmx -mno-80387 -mno-cld" } */

extern int check_int (int *i, void *, int align);
typedef int aligned __attribute__((aligned(64)));

__attribute__((interrupt))
void
foo (void *frame)
{
  aligned j;
  if (check_int (frame, &j, __alignof__(j)))
    __builtin_abort ();
}

/* { dg-final { scan-assembler-times "and\[lq\]?\[^\\n\]*-64,\[^\\n\]*sp" 1 } } */
/* { dg-final { scan-assembler-times "iret" 1 { target ia32 } } } */
/* { dg-final { scan-assembler-times "iretq" 1 { target { ! ia32 } } } } */
/* { dg-final { scan-assembler-times "\tcld" 1 } } */