fix build regression on armhf in tlsdesc asm
authorRich Felker <dalias@aerifal.cx>
Tue, 9 Oct 2018 14:59:39 +0000 (10:59 -0400)
committerRich Felker <dalias@aerifal.cx>
Tue, 9 Oct 2018 14:59:39 +0000 (10:59 -0400)
when invoking the assembler, arm gcc does not always pass the right
flags to enable use of vfp instruction mnemonics. for C code it
produces, it emits the .fpu directive, but this does not help when
building asm source files, which tlsdesc needs to be. to fix, use an
explicit directive here.

commit 0beb9dfbecad38af9759b1e83eeb007e28b70abb introduced this
regression. it has not appeared in any release.

src/ldso/arm/tlsdesc.S

index b81f3111c98c3dc77e949eba372f079ae05c2ff3..4e67c3e25cfef21c1198db99e0a918361c63d989 100644 (file)
@@ -51,6 +51,7 @@ __tlsdesc_dynamic:
 
 3:
 #if __ARM_PCS_VFP || !__SOFTFP__
+       .fpu vfp
        vpush {d0-d7}
 #endif
        push {r0-r3}