1 /* PR target/58372 */ 2 /* { dg-do compile { target c++14 } } */ 3 /* { dg-options "-O2" } */ 4 5 __attribute__ ((__target__ ("rdrnd"))) f(unsigned int * b)6 void f (unsigned int *b) noexcept 7 { 8 __builtin_ia32_rdrand32_step (b); 9 } 10