1 /* { dg-do run } */ 2 3 #include "check.h" 4 5 #ifndef ALIGNMENT 6 #define ALIGNMENT 64 7 #endif 8 9 typedef int aligned __attribute__((aligned(ALIGNMENT))); 10 11 int global; 12 13 class Base {}; 14 15 struct A : virtual public Base 16 { AA17 A() {} 18 }; 19 20 struct B {}; 21 22 void foo(void)23foo (void) throw (B,A) 24 { 25 aligned i; 26 27 if (check_int (&i, __alignof__(i)) != i) 28 abort (); 29 30 throw A(); 31 } 32 33 int main()34main() 35 { 36 try { foo (); } 37 catch (A& a) { } 38 return 0; 39 } 40