-
- Downloads
Fix bootstrap failure on SPARC with -O3 -mcpu=niagara4
This is a regression present on the mainline only, but the underlying issue has been latent for years: the compiler and the assembler disagree on the support of the VIS 3B SIMD ISA, the former bundling it with VIS 3 but not the latter. IMO the documentation is not very clear, so this patch just aligns the compiler with the assembler. gcc/ PR target/118512 * config/sparc/sparc-c.cc (sparc_target_macros): Deal with VIS 3B. * config/sparc/sparc.cc (dump_target_flag_bits): Likewise. (sparc_option_override): Likewise. (sparc_vis_init_builtins): Likewise. * config/sparc/sparc.md (fpcmp_vis): Replace TARGET_VIS3 with TARGET_VIS3B. (vec_cmp): Likewise. (fpcmpu_vis): Likewise. (vec_cmpu): Likewise. (vcond_mask_): Likewise. * config/sparc/sparc.opt (VIS3B): New target mask. * doc/invoke.texi (SPARC options): Document -mvis3b. gcc/testsuite/ * gcc.target/sparc/20230328-1.c: Pass -mvis3b instead of -mvis3. * gcc.target/sparc/20230328-4.c: Likewise. * gcc.target/sparc/fucmp.c: Likewise. * gcc.target/sparc/vis3misc.c: Likewise.
Showing
- gcc/config/sparc/sparc-c.cc 5 additions, 0 deletionsgcc/config/sparc/sparc-c.cc
- gcc/config/sparc/sparc.cc 42 additions, 32 deletionsgcc/config/sparc/sparc.cc
- gcc/config/sparc/sparc.md 6 additions, 6 deletionsgcc/config/sparc/sparc.md
- gcc/config/sparc/sparc.opt 5 additions, 1 deletiongcc/config/sparc/sparc.opt
- gcc/doc/invoke.texi 18 additions, 4 deletionsgcc/doc/invoke.texi
- gcc/testsuite/gcc.target/sparc/20230328-1.c 1 addition, 1 deletiongcc/testsuite/gcc.target/sparc/20230328-1.c
- gcc/testsuite/gcc.target/sparc/20230328-4.c 1 addition, 1 deletiongcc/testsuite/gcc.target/sparc/20230328-4.c
- gcc/testsuite/gcc.target/sparc/fucmp.c 1 addition, 1 deletiongcc/testsuite/gcc.target/sparc/fucmp.c
- gcc/testsuite/gcc.target/sparc/vis3misc.c 2 additions, 1 deletiongcc/testsuite/gcc.target/sparc/vis3misc.c
Loading
Please register or sign in to comment