OSDN Git Service

2010-12-30 Kai Tietz <kai.tietz@onevision.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / i386 / funcspec-5.c
1 /* Test whether all of the 32-bit function specific options are accepted
2    without error.  */
3 /* { dg-do compile } */
4 /* { dg-require-effective-target ilp32 } */
5
6 extern void test_abm (void)                     __attribute__((__target__("abm")));
7 extern void test_aes (void)                     __attribute__((__target__("aes")));
8 extern void test_bmi (void)                     __attribute__((__target__("bmi")));
9 extern void test_mmx (void)                     __attribute__((__target__("mmx")));
10 extern void test_pclmul (void)                  __attribute__((__target__("pclmul")));
11 extern void test_popcnt (void)                  __attribute__((__target__("popcnt")));
12 extern void test_recip (void)                   __attribute__((__target__("recip")));
13 extern void test_sse (void)                     __attribute__((__target__("sse")));
14 extern void test_sse2 (void)                    __attribute__((__target__("sse2")));
15 extern void test_sse3 (void)                    __attribute__((__target__("sse3")));
16 extern void test_sse4 (void)                    __attribute__((__target__("sse4")));
17 extern void test_sse4_1 (void)                  __attribute__((__target__("sse4.1")));
18 extern void test_sse4_2 (void)                  __attribute__((__target__("sse4.2")));
19 extern void test_sse4a (void)                   __attribute__((__target__("sse4a")));
20 extern void test_fma4 (void)                    __attribute__((__target__("fma4")));
21 extern void test_ssse3 (void)                   __attribute__((__target__("ssse3")));
22 extern void test_tbm (void)                     __attribute__((__target__("tbm")));
23
24 extern void test_no_abm (void)                  __attribute__((__target__("no-abm")));
25 extern void test_no_aes (void)                  __attribute__((__target__("no-aes")));
26 extern void test_no_bmi (void)                  __attribute__((__target__("no-bmi")));
27 extern void test_no_mmx (void)                  __attribute__((__target__("no-mmx")));
28 extern void test_no_pclmul (void)               __attribute__((__target__("no-pclmul")));
29 extern void test_no_popcnt (void)               __attribute__((__target__("no-popcnt")));
30 extern void test_no_recip (void)                __attribute__((__target__("no-recip")));
31 extern void test_no_sse (void)                  __attribute__((__target__("no-sse")));
32 extern void test_no_sse2 (void)                 __attribute__((__target__("no-sse2")));
33 extern void test_no_sse3 (void)                 __attribute__((__target__("no-sse3")));
34 extern void test_no_sse4 (void)                 __attribute__((__target__("no-sse4")));
35 extern void test_no_sse4_1 (void)               __attribute__((__target__("no-sse4.1")));
36 extern void test_no_sse4_2 (void)               __attribute__((__target__("no-sse4.2")));
37 extern void test_no_sse4a (void)                __attribute__((__target__("no-sse4a")));
38 extern void test_no_fma4 (void)                 __attribute__((__target__("no-fma4")));
39 extern void test_no_ssse3 (void)                __attribute__((__target__("no-ssse3")));
40 extern void test_no_tbm (void)                  __attribute__((__target__("no-tbm")));
41
42 extern void test_arch_i386 (void)               __attribute__((__target__("arch=i386")));
43 extern void test_arch_i486 (void)               __attribute__((__target__("arch=i486")));
44 extern void test_arch_i586 (void)               __attribute__((__target__("arch=i586")));
45 extern void test_arch_pentium (void)            __attribute__((__target__("arch=pentium")));
46 extern void test_arch_pentium_mmx (void)        __attribute__((__target__("arch=pentium-mmx")));
47 extern void test_arch_winchip_c6 (void)         __attribute__((__target__("arch=winchip-c6")));
48 extern void test_arch_winchip2 (void)           __attribute__((__target__("arch=winchip2")));
49 extern void test_arch_c3 (void)                 __attribute__((__target__("arch=c3")));
50 extern void test_arch_c3_2 (void)               __attribute__((__target__("arch=c3-2")));
51 extern void test_arch_i686 (void)               __attribute__((__target__("arch=i686")));
52 extern void test_arch_pentiumpro (void)         __attribute__((__target__("arch=pentiumpro")));
53 extern void test_arch_pentium2 (void)           __attribute__((__target__("arch=pentium2")));
54 extern void test_arch_pentium3 (void)           __attribute__((__target__("arch=pentium3")));
55 extern void test_arch_pentium3m (void)          __attribute__((__target__("arch=pentium3m")));
56 extern void test_arch_pentium_m (void)          __attribute__((__target__("arch=pentium-m")));
57 extern void test_arch_pentium4 (void)           __attribute__((__target__("arch=pentium4")));
58 extern void test_arch_pentium4m (void)          __attribute__((__target__("arch=pentium4m")));
59 extern void test_arch_prescott (void)           __attribute__((__target__("arch=prescott")));
60 extern void test_arch_nocona (void)             __attribute__((__target__("arch=nocona")));
61 extern void test_arch_core2 (void)              __attribute__((__target__("arch=core2")));
62 extern void test_arch_geode (void)              __attribute__((__target__("arch=geode")));
63 extern void test_arch_k6 (void)                 __attribute__((__target__("arch=k6")));
64 extern void test_arch_k6_2 (void)               __attribute__((__target__("arch=k6-2")));
65 extern void test_arch_k6_3 (void)               __attribute__((__target__("arch=k6-3")));
66 extern void test_arch_athlon (void)             __attribute__((__target__("arch=athlon")));
67 extern void test_arch_athlon_tbird (void)       __attribute__((__target__("arch=athlon-tbird")));
68 extern void test_arch_athlon_4 (void)           __attribute__((__target__("arch=athlon-4")));
69 extern void test_arch_athlon_xp (void)          __attribute__((__target__("arch=athlon-xp")));
70 extern void test_arch_athlon_mp (void)          __attribute__((__target__("arch=athlon-mp")));
71 extern void test_arch_k8 (void)                 __attribute__((__target__("arch=k8")));
72 extern void test_arch_k8_sse3 (void)            __attribute__((__target__("arch=k8-sse3")));
73 extern void test_arch_opteron (void)            __attribute__((__target__("arch=opteron")));
74 extern void test_arch_opteron_sse3 (void)       __attribute__((__target__("arch=opteron-sse3")));
75 extern void test_arch_athlon64 (void)           __attribute__((__target__("arch=athlon64")));
76 extern void test_arch_athlon64_sse3 (void)      __attribute__((__target__("arch=athlon64-sse3")));
77 extern void test_arch_athlon_fx (void)          __attribute__((__target__("arch=athlon-fx")));
78 extern void test_arch_amdfam10 (void)           __attribute__((__target__("arch=amdfam10")));
79 extern void test_arch_barcelona (void)          __attribute__((__target__("arch=barcelona")));
80 extern void test_arch_foo (void)                __attribute__((__target__("arch=foo"))); /* { dg-error "bad value" } */
81
82 extern void test_tune_i386 (void)               __attribute__((__target__("tune=i386")));
83 extern void test_tune_i486 (void)               __attribute__((__target__("tune=i486")));
84 extern void test_tune_i586 (void)               __attribute__((__target__("tune=i586")));
85 extern void test_tune_pentium (void)            __attribute__((__target__("tune=pentium")));
86 extern void test_tune_pentium_mmx (void)        __attribute__((__target__("tune=pentium-mmx")));
87 extern void test_tune_winchip_c6 (void)         __attribute__((__target__("tune=winchip-c6")));
88 extern void test_tune_winchip2 (void)           __attribute__((__target__("tune=winchip2")));
89 extern void test_tune_c3 (void)                 __attribute__((__target__("tune=c3")));
90 extern void test_tune_c3_2 (void)               __attribute__((__target__("tune=c3-2")));
91 extern void test_tune_i686 (void)               __attribute__((__target__("tune=i686")));
92 extern void test_tune_pentiumpro (void)         __attribute__((__target__("tune=pentiumpro")));
93 extern void test_tune_pentium2 (void)           __attribute__((__target__("tune=pentium2")));
94 extern void test_tune_pentium3 (void)           __attribute__((__target__("tune=pentium3")));
95 extern void test_tune_pentium3m (void)          __attribute__((__target__("tune=pentium3m")));
96 extern void test_tune_pentium_m (void)          __attribute__((__target__("tune=pentium-m")));
97 extern void test_tune_pentium4 (void)           __attribute__((__target__("tune=pentium4")));
98 extern void test_tune_pentium4m (void)          __attribute__((__target__("tune=pentium4m")));
99 extern void test_tune_prescott (void)           __attribute__((__target__("tune=prescott")));
100 extern void test_tune_nocona (void)             __attribute__((__target__("tune=nocona")));
101 extern void test_tune_core2 (void)              __attribute__((__target__("tune=core2")));
102 extern void test_tune_geode (void)              __attribute__((__target__("tune=geode")));
103 extern void test_tune_k6 (void)                 __attribute__((__target__("tune=k6")));
104 extern void test_tune_k6_2 (void)               __attribute__((__target__("tune=k6-2")));
105 extern void test_tune_k6_3 (void)               __attribute__((__target__("tune=k6-3")));
106 extern void test_tune_athlon (void)             __attribute__((__target__("tune=athlon")));
107 extern void test_tune_athlon_tbird (void)       __attribute__((__target__("tune=athlon-tbird")));
108 extern void test_tune_athlon_4 (void)           __attribute__((__target__("tune=athlon-4")));
109 extern void test_tune_athlon_xp (void)          __attribute__((__target__("tune=athlon-xp")));
110 extern void test_tune_athlon_mp (void)          __attribute__((__target__("tune=athlon-mp")));
111 extern void test_tune_k8 (void)                 __attribute__((__target__("tune=k8")));
112 extern void test_tune_k8_sse3 (void)            __attribute__((__target__("tune=k8-sse3")));
113 extern void test_tune_opteron (void)            __attribute__((__target__("tune=opteron")));
114 extern void test_tune_opteron_sse3 (void)       __attribute__((__target__("tune=opteron-sse3")));
115 extern void test_tune_athlon64 (void)           __attribute__((__target__("tune=athlon64")));
116 extern void test_tune_athlon64_sse3 (void)      __attribute__((__target__("tune=athlon64-sse3")));
117 extern void test_tune_athlon_fx (void)          __attribute__((__target__("tune=athlon-fx")));
118 extern void test_tune_amdfam10 (void)           __attribute__((__target__("tune=amdfam10")));
119 extern void test_tune_barcelona (void)          __attribute__((__target__("tune=barcelona")));
120 extern void test_tune_generic (void)            __attribute__((__target__("tune=generic")));
121 extern void test_tune_foo (void)                __attribute__((__target__("tune=foo"))); /* { dg-error "bad value" } */
122
123 extern void test_fpmath_sse (void)              __attribute__((__target__("sse2,fpmath=sse")));
124 extern void test_fpmath_387 (void)              __attribute__((__target__("sse2,fpmath=387")));
125 extern void test_fpmath_sse_387 (void)          __attribute__((__target__("sse2,fpmath=sse+387")));
126 extern void test_fpmath_387_sse (void)          __attribute__((__target__("sse2,fpmath=387+sse")));
127 extern void test_fpmath_both (void)             __attribute__((__target__("sse2,fpmath=both")));