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