PR target/80969 - Fix ICE with -mabi=ms -mavx512f, reduce wasted space when realignin...
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr67995-1.c
blob072b1fe787db8c1f4d8abc5a87b12a81b55f084e
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -march=haswell" } */
4 unsigned int
5 __attribute__ ((target("arch=core2")))
6 __x86_rdrand(void)
8 unsigned int retries = 100;
9 unsigned int val;
11 while (__builtin_ia32_rdrand32_step(&val) == 0) /* { dg-error "needs isa option" } */
12 if (--retries == 0)
13 return 0;
15 return val;