Build crt*vr.S with AltiVec enabled
authorSegher Boessenkool <segher@kernel.crashing.org>
Fri, 10 Mar 2017 19:29:48 +0000 (20:29 +0100)
committerSegher Boessenkool <segher@gcc.gnu.org>
Fri, 10 Mar 2017 19:29:48 +0000 (20:29 +0100)
These files won't build on targets that do not have AltiVec enabled,
breaking the build, unless we tell GAS that Altivec insns are fine.
The alternative is to not build these files in that case, which is much
more complicated.

libgcc/
* config/rs6000/crtrestvr.s: Use .machine altivec.
* config/rs6000/crtsavevr.s: Ditto.

From-SVN: r246051

libgcc/ChangeLog
libgcc/config/rs6000/crtrestvr.S
libgcc/config/rs6000/crtsavevr.S

index 470fbb7..a78bc43 100644 (file)
@@ -1,5 +1,10 @@
 2017-03-10  Segher Boessenkool  <segher@kernel.crashing.org>
 
+       * config/rs6000/crtrestvr.s: Use .machine altivec.
+       * config/rs6000/crtsavevr.s: Ditto.
+
+2017-03-10  Segher Boessenkool  <segher@kernel.crashing.org>
+
        * configure.ac (test for libgcc_cv_powerpc_float128): Temporarily
        modify CFLAGS.  Add -mabi=altivec -mvsx -mfloat128.
        (test for libgcc_cv_powerpc_float128_hw): Add -mpower9-vector and
index 592a2b4..a44ab89 100644 (file)
@@ -31,6 +31,7 @@
 
 /* Called with r0 pointing just beyond the end of the vector save area.  */
 
+       .machine altivec
        .section ".text"
 CFI_STARTPROC
 HIDDEN_FUNC(_restvr_20)
index 2fd54c4..bc02019 100644 (file)
@@ -31,6 +31,7 @@
 
 /* Called with r0 pointing just beyond the end of the vector save area.  */
 
+       .machine altivec
        .section ".text"
 CFI_STARTPROC
 HIDDEN_FUNC(_savevr_20)