blob: d61b1ba7558bc5e6c90aec9f0a2e1af75b5dacc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* { dg-do run { target { { i?86-*-* x86_64-*-* } && ia32 } } } */
#include "test-unwind.h"
#if !defined __PIC__ && !defined __USING_SJLJ_EXCEPTIONS__
/* Test situation 1: Stack really realign without DRAP */
void __attribute__ ((noinline))
foo ()
{
int __attribute__ ((aligned(64))) a=1;
if (check_int (&a, __alignof__(a)) != a)
abort ();
ALTER_REGS();
throw a;
}
#endif
|