blob: f2b677f8c805a4d191af9ce88e8ea63734b4d33a [file] [log] [blame]
/* { dg-do run } */
/* { dg-options "-O2 -march=native" } */
int
main ()
{
if (__builtin_cpu_supports ("uintr"))
{
#ifdef __x86_64__
# ifndef __UINTR__
__builtin_abort ();
# endif
#else
# ifdef __UINTR__
__builtin_abort ();
# endif
#endif
return 0;
}
return 0;
}