Commit 19bd4ebc by Tom de Vries Committed by Tom de Vries

Fix avx512f spec in gcc.target/i386/funcspec-5.c

2015-01-24  Tom de Vries  <tom@codesourcery.com>

	* gcc.target/i386/funcspec-5.c: Replace avx512 with avx512f.

From-SVN: r220079
parent d0d7b0b3
2015-01-24 Tom de Vries <tom@codesourcery.com>
* gcc.target/i386/funcspec-5.c: Replace avx512 with avx512f.
2015-01-23 Ian Lance Taylor <iant@google.com> 2015-01-23 Ian Lance Taylor <iant@google.com>
PR go/64510 PR go/64510
......
...@@ -24,7 +24,7 @@ extern void test_ssse3 (void) __attribute__((__target__("ssse3"))); ...@@ -24,7 +24,7 @@ extern void test_ssse3 (void) __attribute__((__target__("ssse3")));
extern void test_tbm (void) __attribute__((__target__("tbm"))); extern void test_tbm (void) __attribute__((__target__("tbm")));
extern void test_avx (void) __attribute__((__target__("avx"))); extern void test_avx (void) __attribute__((__target__("avx")));
extern void test_avx2 (void) __attribute__((__target__("avx2"))); extern void test_avx2 (void) __attribute__((__target__("avx2")));
extern void test_avx512 (void) __attribute__((__target__("avx512"))); extern void test_avx512f (void) __attribute__((__target__("avx512f")));
extern void test_no_abm (void) __attribute__((__target__("no-abm"))); extern void test_no_abm (void) __attribute__((__target__("no-abm")));
extern void test_no_aes (void) __attribute__((__target__("no-aes"))); extern void test_no_aes (void) __attribute__((__target__("no-aes")));
...@@ -47,7 +47,7 @@ extern void test_no_ssse3 (void) __attribute__((__target__("no-ssse3"))); ...@@ -47,7 +47,7 @@ extern void test_no_ssse3 (void) __attribute__((__target__("no-ssse3")));
extern void test_no_tbm (void) __attribute__((__target__("no-tbm"))); extern void test_no_tbm (void) __attribute__((__target__("no-tbm")));
extern void test_no_avx (void) __attribute__((__target__("no-avx"))); extern void test_no_avx (void) __attribute__((__target__("no-avx")));
extern void test_no_avx2 (void) __attribute__((__target__("no-avx2"))); extern void test_no_avx2 (void) __attribute__((__target__("no-avx2")));
extern void test_no_avx512 (void) __attribute__((__target__("no-avx512"))); extern void test_no_avx512f (void) __attribute__((__target__("no-avx512f")));
extern void test_arch_i386 (void) __attribute__((__target__("arch=i386"))); extern void test_arch_i386 (void) __attribute__((__target__("arch=i386")));
extern void test_arch_i486 (void) __attribute__((__target__("arch=i486"))); extern void test_arch_i486 (void) __attribute__((__target__("arch=i486")));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment