aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/gcc/testsuite/gcc.target/i386/funcspec-5.c
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-06-17 11:09:54 -0700
committerDan Albert <danalbert@google.com>2015-06-17 14:15:22 -0700
commitf378ebf14df0952eae870c9865bab8326aa8f137 (patch)
tree31794503eb2a8c64ea5f313b93100f1163afcffb /gcc-4.4.3/gcc/testsuite/gcc.target/i386/funcspec-5.c
parent2c58169824949d3a597d9fa81931e001ef9b1bd0 (diff)
downloadtoolchain_gcc-f378ebf14df0952eae870c9865bab8326aa8f137.tar.gz
toolchain_gcc-f378ebf14df0952eae870c9865bab8326aa8f137.tar.bz2
toolchain_gcc-f378ebf14df0952eae870c9865bab8326aa8f137.zip
Delete old versions of GCC.
Change-Id: I710f125d905290e1024cbd67f48299861790c66c
Diffstat (limited to 'gcc-4.4.3/gcc/testsuite/gcc.target/i386/funcspec-5.c')
-rw-r--r--gcc-4.4.3/gcc/testsuite/gcc.target/i386/funcspec-5.c125
1 files changed, 0 insertions, 125 deletions
diff --git a/gcc-4.4.3/gcc/testsuite/gcc.target/i386/funcspec-5.c b/gcc-4.4.3/gcc/testsuite/gcc.target/i386/funcspec-5.c
deleted file mode 100644
index 378dca5f5..000000000
--- a/gcc-4.4.3/gcc/testsuite/gcc.target/i386/funcspec-5.c
+++ /dev/null
@@ -1,125 +0,0 @@
-/* Test whether all of the 32-bit function specific options are accepted
- without error. */
-/* { dg-do compile } */
-/* { dg-require-effective-target ilp32 } */
-
-extern void test_abm (void) __attribute__((__target__("abm")));
-extern void test_aes (void) __attribute__((__target__("aes")));
-extern void test_fused_madd (void) __attribute__((__target__("fused-madd")));
-extern void test_mmx (void) __attribute__((__target__("mmx")));
-extern void test_pclmul (void) __attribute__((__target__("pclmul")));
-extern void test_popcnt (void) __attribute__((__target__("popcnt")));
-extern void test_recip (void) __attribute__((__target__("recip")));
-extern void test_sse (void) __attribute__((__target__("sse")));
-extern void test_sse2 (void) __attribute__((__target__("sse2")));
-extern void test_sse3 (void) __attribute__((__target__("sse3")));
-extern void test_sse4 (void) __attribute__((__target__("sse4")));
-extern void test_sse4_1 (void) __attribute__((__target__("sse4.1")));
-extern void test_sse4_2 (void) __attribute__((__target__("sse4.2")));
-extern void test_sse4a (void) __attribute__((__target__("sse4a")));
-extern void test_sse5 (void) __attribute__((__target__("sse5")));
-extern void test_ssse3 (void) __attribute__((__target__("ssse3")));
-
-extern void test_no_abm (void) __attribute__((__target__("no-abm")));
-extern void test_no_aes (void) __attribute__((__target__("no-aes")));
-extern void test_no_fused_madd (void) __attribute__((__target__("no-fused-madd")));
-extern void test_no_mmx (void) __attribute__((__target__("no-mmx")));
-extern void test_no_pclmul (void) __attribute__((__target__("no-pclmul")));
-extern void test_no_popcnt (void) __attribute__((__target__("no-popcnt")));
-extern void test_no_recip (void) __attribute__((__target__("no-recip")));
-extern void test_no_sse (void) __attribute__((__target__("no-sse")));
-extern void test_no_sse2 (void) __attribute__((__target__("no-sse2")));
-extern void test_no_sse3 (void) __attribute__((__target__("no-sse3")));
-extern void test_no_sse4 (void) __attribute__((__target__("no-sse4")));
-extern void test_no_sse4_1 (void) __attribute__((__target__("no-sse4.1")));
-extern void test_no_sse4_2 (void) __attribute__((__target__("no-sse4.2")));
-extern void test_no_sse4a (void) __attribute__((__target__("no-sse4a")));
-extern void test_no_sse5 (void) __attribute__((__target__("no-sse5")));
-extern void test_no_ssse3 (void) __attribute__((__target__("no-ssse3")));
-
-extern void test_arch_i386 (void) __attribute__((__target__("arch=i386")));
-extern void test_arch_i486 (void) __attribute__((__target__("arch=i486")));
-extern void test_arch_i586 (void) __attribute__((__target__("arch=i586")));
-extern void test_arch_pentium (void) __attribute__((__target__("arch=pentium")));
-extern void test_arch_pentium_mmx (void) __attribute__((__target__("arch=pentium-mmx")));
-extern void test_arch_winchip_c6 (void) __attribute__((__target__("arch=winchip-c6")));
-extern void test_arch_winchip2 (void) __attribute__((__target__("arch=winchip2")));
-extern void test_arch_c3 (void) __attribute__((__target__("arch=c3")));
-extern void test_arch_c3_2 (void) __attribute__((__target__("arch=c3-2")));
-extern void test_arch_i686 (void) __attribute__((__target__("arch=i686")));
-extern void test_arch_pentiumpro (void) __attribute__((__target__("arch=pentiumpro")));
-extern void test_arch_pentium2 (void) __attribute__((__target__("arch=pentium2")));
-extern void test_arch_pentium3 (void) __attribute__((__target__("arch=pentium3")));
-extern void test_arch_pentium3m (void) __attribute__((__target__("arch=pentium3m")));
-extern void test_arch_pentium_m (void) __attribute__((__target__("arch=pentium-m")));
-extern void test_arch_pentium4 (void) __attribute__((__target__("arch=pentium4")));
-extern void test_arch_pentium4m (void) __attribute__((__target__("arch=pentium4m")));
-extern void test_arch_prescott (void) __attribute__((__target__("arch=prescott")));
-extern void test_arch_nocona (void) __attribute__((__target__("arch=nocona")));
-extern void test_arch_core2 (void) __attribute__((__target__("arch=core2")));
-extern void test_arch_geode (void) __attribute__((__target__("arch=geode")));
-extern void test_arch_k6 (void) __attribute__((__target__("arch=k6")));
-extern void test_arch_k6_2 (void) __attribute__((__target__("arch=k6-2")));
-extern void test_arch_k6_3 (void) __attribute__((__target__("arch=k6-3")));
-extern void test_arch_athlon (void) __attribute__((__target__("arch=athlon")));
-extern void test_arch_athlon_tbird (void) __attribute__((__target__("arch=athlon-tbird")));
-extern void test_arch_athlon_4 (void) __attribute__((__target__("arch=athlon-4")));
-extern void test_arch_athlon_xp (void) __attribute__((__target__("arch=athlon-xp")));
-extern void test_arch_athlon_mp (void) __attribute__((__target__("arch=athlon-mp")));
-extern void test_arch_k8 (void) __attribute__((__target__("arch=k8")));
-extern void test_arch_k8_sse3 (void) __attribute__((__target__("arch=k8-sse3")));
-extern void test_arch_opteron (void) __attribute__((__target__("arch=opteron")));
-extern void test_arch_opteron_sse3 (void) __attribute__((__target__("arch=opteron-sse3")));
-extern void test_arch_athlon64 (void) __attribute__((__target__("arch=athlon64")));
-extern void test_arch_athlon64_sse3 (void) __attribute__((__target__("arch=athlon64-sse3")));
-extern void test_arch_athlon_fx (void) __attribute__((__target__("arch=athlon-fx")));
-extern void test_arch_amdfam10 (void) __attribute__((__target__("arch=amdfam10")));
-extern void test_arch_barcelona (void) __attribute__((__target__("arch=barcelona")));
-extern void test_arch_foo (void) __attribute__((__target__("arch=foo"))); /* { dg-error "bad value" } */
-
-extern void test_tune_i386 (void) __attribute__((__target__("tune=i386")));
-extern void test_tune_i486 (void) __attribute__((__target__("tune=i486")));
-extern void test_tune_i586 (void) __attribute__((__target__("tune=i586")));
-extern void test_tune_pentium (void) __attribute__((__target__("tune=pentium")));
-extern void test_tune_pentium_mmx (void) __attribute__((__target__("tune=pentium-mmx")));
-extern void test_tune_winchip_c6 (void) __attribute__((__target__("tune=winchip-c6")));
-extern void test_tune_winchip2 (void) __attribute__((__target__("tune=winchip2")));
-extern void test_tune_c3 (void) __attribute__((__target__("tune=c3")));
-extern void test_tune_c3_2 (void) __attribute__((__target__("tune=c3-2")));
-extern void test_tune_i686 (void) __attribute__((__target__("tune=i686")));
-extern void test_tune_pentiumpro (void) __attribute__((__target__("tune=pentiumpro")));
-extern void test_tune_pentium2 (void) __attribute__((__target__("tune=pentium2")));
-extern void test_tune_pentium3 (void) __attribute__((__target__("tune=pentium3")));
-extern void test_tune_pentium3m (void) __attribute__((__target__("tune=pentium3m")));
-extern void test_tune_pentium_m (void) __attribute__((__target__("tune=pentium-m")));
-extern void test_tune_pentium4 (void) __attribute__((__target__("tune=pentium4")));
-extern void test_tune_pentium4m (void) __attribute__((__target__("tune=pentium4m")));
-extern void test_tune_prescott (void) __attribute__((__target__("tune=prescott")));
-extern void test_tune_nocona (void) __attribute__((__target__("tune=nocona")));
-extern void test_tune_core2 (void) __attribute__((__target__("tune=core2")));
-extern void test_tune_geode (void) __attribute__((__target__("tune=geode")));
-extern void test_tune_k6 (void) __attribute__((__target__("tune=k6")));
-extern void test_tune_k6_2 (void) __attribute__((__target__("tune=k6-2")));
-extern void test_tune_k6_3 (void) __attribute__((__target__("tune=k6-3")));
-extern void test_tune_athlon (void) __attribute__((__target__("tune=athlon")));
-extern void test_tune_athlon_tbird (void) __attribute__((__target__("tune=athlon-tbird")));
-extern void test_tune_athlon_4 (void) __attribute__((__target__("tune=athlon-4")));
-extern void test_tune_athlon_xp (void) __attribute__((__target__("tune=athlon-xp")));
-extern void test_tune_athlon_mp (void) __attribute__((__target__("tune=athlon-mp")));
-extern void test_tune_k8 (void) __attribute__((__target__("tune=k8")));
-extern void test_tune_k8_sse3 (void) __attribute__((__target__("tune=k8-sse3")));
-extern void test_tune_opteron (void) __attribute__((__target__("tune=opteron")));
-extern void test_tune_opteron_sse3 (void) __attribute__((__target__("tune=opteron-sse3")));
-extern void test_tune_athlon64 (void) __attribute__((__target__("tune=athlon64")));
-extern void test_tune_athlon64_sse3 (void) __attribute__((__target__("tune=athlon64-sse3")));
-extern void test_tune_athlon_fx (void) __attribute__((__target__("tune=athlon-fx")));
-extern void test_tune_amdfam10 (void) __attribute__((__target__("tune=amdfam10")));
-extern void test_tune_barcelona (void) __attribute__((__target__("tune=barcelona")));
-extern void test_tune_generic (void) __attribute__((__target__("tune=generic")));
-extern void test_tune_foo (void) __attribute__((__target__("tune=foo"))); /* { dg-error "bad value" } */
-
-extern void test_fpmath_sse (void) __attribute__((__target__("sse2,fpmath=sse")));
-extern void test_fpmath_387 (void) __attribute__((__target__("sse2,fpmath=387")));
-extern void test_fpmath_sse_387 (void) __attribute__((__target__("sse2,fpmath=sse+387")));
-extern void test_fpmath_387_sse (void) __attribute__((__target__("sse2,fpmath=387+sse")));
-extern void test_fpmath_both (void) __attribute__((__target__("sse2,fpmath=both")));