]> git.sesse.net Git - ffmpeg/commitdiff
checkasm: arm: Don't use blx to call checkasm_fail_func
authorMartin Storsjö <martin@martin.st>
Tue, 12 May 2020 12:50:10 +0000 (15:50 +0300)
committerMartin Storsjö <martin@martin.st>
Fri, 15 May 2020 18:22:32 +0000 (21:22 +0300)
We should just use a normal bl here, and the linker will add the 'x'
bit if necessary.

This fixes calling the checkasm_fail_func on windows, where the
code is built in thumb mode (and the linker doesn't clear the 'x'
bit in the blx instruction).

Signed-off-by: Martin Storsjö <martin@martin.st>
tests/checkasm/arm/checkasm.S

index 838c383671127b475956eb90adc267159a429a21..a5ba238684738355267041294d4e027d323f7b2d 100644 (file)
@@ -150,7 +150,7 @@ function checkasm_checked_call_\variant, export=1
 2:
         movrel          r0, error_message_gpr
 1:
-        blx             X(checkasm_fail_func)
+        bl              X(checkasm_fail_func)
 0:
         pop             {r0, r1}
 .ifc \variant, vfp