OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.target/] [i386/] [funcspec-6.c] - Blame information for rev 338

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 318 jeremybenn
/* Test whether all of the 64-bit function specific options are accepted
2
   without error.  */
3
/* { dg-do compile } */
4
/* { dg-require-effective-target lp64 } */
5
 
6
extern void test_abm (void)                     __attribute__((__target__("abm")));
7
extern void test_aes (void)                     __attribute__((__target__("aes")));
8
extern void test_mmx (void)                     __attribute__((__target__("mmx")));
9
extern void test_pclmul (void)                  __attribute__((__target__("pclmul")));
10
extern void test_popcnt (void)                  __attribute__((__target__("popcnt")));
11
extern void test_recip (void)                   __attribute__((__target__("recip")));
12
extern void test_sse (void)                     __attribute__((__target__("sse")));
13
extern void test_sse2 (void)                    __attribute__((__target__("sse2")));
14
extern void test_sse3 (void)                    __attribute__((__target__("sse3")));
15
extern void test_sse4 (void)                    __attribute__((__target__("sse4")));
16
extern void test_sse4_1 (void)                  __attribute__((__target__("sse4.1")));
17
extern void test_sse4_2 (void)                  __attribute__((__target__("sse4.2")));
18
extern void test_sse4a (void)                   __attribute__((__target__("sse4a")));
19
extern void test_fma4 (void)                    __attribute__((__target__("fma4")));
20
extern void test_ssse3 (void)                   __attribute__((__target__("ssse3")));
21
 
22
extern void test_no_abm (void)                  __attribute__((__target__("no-abm")));
23
extern void test_no_aes (void)                  __attribute__((__target__("no-aes")));
24
extern void test_no_mmx (void)                  __attribute__((__target__("no-mmx")));
25
extern void test_no_pclmul (void)               __attribute__((__target__("no-pclmul")));
26
extern void test_no_popcnt (void)               __attribute__((__target__("no-popcnt")));
27
extern void test_no_recip (void)                __attribute__((__target__("no-recip")));
28
extern void test_no_sse (void)                  __attribute__((__target__("no-sse")));
29
extern void test_no_sse2 (void)                 __attribute__((__target__("no-sse2")));
30
extern void test_no_sse3 (void)                 __attribute__((__target__("no-sse3")));
31
extern void test_no_sse4 (void)                 __attribute__((__target__("no-sse4")));
32
extern void test_no_sse4_1 (void)               __attribute__((__target__("no-sse4.1")));
33
extern void test_no_sse4_2 (void)               __attribute__((__target__("no-sse4.2")));
34
extern void test_no_sse4a (void)                __attribute__((__target__("no-sse4a")));
35
extern void test_no_fma4 (void)                 __attribute__((__target__("no-fma4")));
36
extern void test_no_ssse3 (void)                __attribute__((__target__("no-ssse3")));
37
 
38
extern void test_arch_nocona (void)             __attribute__((__target__("arch=nocona")));
39
extern void test_arch_core2 (void)              __attribute__((__target__("arch=core2")));
40
extern void test_arch_k8 (void)                 __attribute__((__target__("arch=k8")));
41
extern void test_arch_k8_sse3 (void)            __attribute__((__target__("arch=k8-sse3")));
42
extern void test_arch_opteron (void)            __attribute__((__target__("arch=opteron")));
43
extern void test_arch_opteron_sse3 (void)       __attribute__((__target__("arch=opteron-sse3")));
44
extern void test_arch_athlon64 (void)           __attribute__((__target__("arch=athlon64")));
45
extern void test_arch_athlon64_sse3 (void)      __attribute__((__target__("arch=athlon64-sse3")));
46
extern void test_arch_athlon_fx (void)          __attribute__((__target__("arch=athlon-fx")));
47
extern void test_arch_amdfam10 (void)           __attribute__((__target__("arch=amdfam10")));
48
extern void test_arch_barcelona (void)          __attribute__((__target__("arch=barcelona")));
49
extern void test_arch_foo (void)                __attribute__((__target__("arch=foo"))); /* { dg-error "bad value" } */
50
 
51
extern void test_tune_nocona (void)             __attribute__((__target__("tune=nocona")));
52
extern void test_tune_core2 (void)              __attribute__((__target__("tune=core2")));
53
extern void test_tune_k8 (void)                 __attribute__((__target__("tune=k8")));
54
extern void test_tune_k8_sse3 (void)            __attribute__((__target__("tune=k8-sse3")));
55
extern void test_tune_opteron (void)            __attribute__((__target__("tune=opteron")));
56
extern void test_tune_opteron_sse3 (void)       __attribute__((__target__("tune=opteron-sse3")));
57
extern void test_tune_athlon64 (void)           __attribute__((__target__("tune=athlon64")));
58
extern void test_tune_athlon64_sse3 (void)      __attribute__((__target__("tune=athlon64-sse3")));
59
extern void test_tune_athlon_fx (void)          __attribute__((__target__("tune=athlon-fx")));
60
extern void test_tune_amdfam10 (void)           __attribute__((__target__("tune=amdfam10")));
61
extern void test_tune_barcelona (void)          __attribute__((__target__("tune=barcelona")));
62
extern void test_tune_generic (void)            __attribute__((__target__("tune=generic")));
63
extern void test_tune_foo (void)                __attribute__((__target__("tune=foo"))); /* { dg-error "bad value" } */
64
 
65
extern void test_fpmath_sse (void)              __attribute__((__target__("sse2,fpmath=sse")));
66
extern void test_fpmath_387 (void)              __attribute__((__target__("sse2,fpmath=387")));
67
extern void test_fpmath_sse_387 (void)          __attribute__((__target__("sse2,fpmath=sse+387")));
68
extern void test_fpmath_387_sse (void)          __attribute__((__target__("sse2,fpmath=387+sse")));
69
extern void test_fpmath_both (void)             __attribute__((__target__("sse2,fpmath=both")));

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.