509a66
diff -up firefox-60.0/mfbt/LinuxSignal.h.mozilla-1238661 firefox-60.0/mfbt/LinuxSignal.h
509a66
--- firefox-60.0/mfbt/LinuxSignal.h.mozilla-1238661	2018-04-27 08:55:38.848241768 +0200
509a66
+++ firefox-60.0/mfbt/LinuxSignal.h	2018-04-27 09:06:47.946769859 +0200
509a66
@@ -25,10 +25,13 @@ SignalTrampoline(int aSignal, siginfo_t*
509a66
     "nop; nop; nop; nop"
509a66
     : : : "memory");
509a66
 
509a66
+  // Because the assembler may generate additional insturctions below, we
509a66
+  // need to ensure NOPs are inserted first by separating them out above.
509a66
+
509a66
   asm volatile (
509a66
-    "b %0"
509a66
+    "bx %0"
509a66
     :
509a66
-    : "X"(H)
509a66
+    : "r"(H), "l"(aSignal), "l"(aInfo), "l"(aContext)
509a66
     : "memory");
509a66
 }
509a66