* cfgloopmanip.c (duplicate_loop_to_header_edge): Cleanup profile
[official-gcc.git] / gcc / testsuite / gcc.dg / compat / pr38736_main.c
blob8f221083c903603a5f7e126bb692b46245f4fc96
1 /* PR target/38736 */
2 /* { dg-skip-if "attribute ((aligned))" { ! { i?86-*-* x86_64-*-* } } } */
3 /* { dg-require-effective-target avx_runtime } */
5 /* Test compatibility of attribute ((aligned)) with and without -mavx. */
7 extern int aligned_x (void);
8 extern int aligned_y_avx (void);
9 extern void abort (void);
11 int
12 main ()
14 if (aligned_x () != aligned_y_avx ())
15 abort ();
17 return 0;