2e0f17
diff -up firefox-60.0/mfbt/LinuxSignal.h.mozilla-1238661 firefox-60.0/mfbt/LinuxSignal.h
2e0f17
--- firefox-60.0/mfbt/LinuxSignal.h.mozilla-1238661	2018-04-27 08:55:38.848241768 +0200
2e0f17
+++ firefox-60.0/mfbt/LinuxSignal.h	2018-04-27 09:06:47.946769859 +0200
2e0f17
@@ -22,7 +22,7 @@ __attribute__((naked)) void SignalTrampo
2e0f17
                                              void* aContext) {
2e0f17
   asm volatile("nop; nop; nop; nop" : : : "memory");
2e0f17
 
2e0f17
-  asm volatile("b %0" : : "X"(H) : "memory");
2e0f17
+  asm volatile("bx %0" : : "r"(H), "l"(aSignal), "l"(aInfo), "l"(aContext) : "memory");
2e0f17
 }
2e0f17
 
2e0f17
 #  define MOZ_SIGNAL_TRAMPOLINE(h) (mozilla::SignalTrampoline<h>)