1 /* { dg-do compile { target i?86-*-* x86_64-*-* } } */
2 /* { dg-require-ifunc "" } */
4 int fum (); // Extra declaration that is merged with the second one.
5 int fum () __attribute__ ((target("default")));
8 int fum () __attribute__((target( "mmx")));
9 int fum () __attribute__((target( "popcnt")));
10 int fum () __attribute__((target( "sse")));
11 int fum () __attribute__((target( "sse2")));
12 int fum () __attribute__((target( "sse3")));
13 int fum () __attribute__((target( "ssse3")));
14 int fum () __attribute__((target( "sse4.1")));
15 int fum () __attribute__((target( "sse4.2")));
16 int fum () __attribute__((target( "avx")));
17 int fum () __attribute__((target( "avx2")));
19 int fum () __attribute__((target("arch=core2")));
20 int fum () __attribute__((target("arch=corei7")));
21 int fum () __attribute__((target("arch=atom")));