summaryrefslogtreecommitdiff
path: root/Bug-1238661---fix-mozillaSignalTrampoline-to-work-.patch
diff options
context:
space:
mode:
authorPeter Robinson <pbrobinson@gmail.com>2020-07-28 18:24:14 +0100
committerPeter Robinson <pbrobinson@gmail.com>2020-07-28 18:24:14 +0100
commit71fbbe358df123103f665dd5393ddcc4d915deb1 (patch)
tree502c43bb6f42943d0cb39e2dbfdd5d5fb48f7f96 /Bug-1238661---fix-mozillaSignalTrampoline-to-work-.patch
parentEnabled PGO, added fix for mozilla#1640982 (diff)
downloadlibrewolf-fedora-ff-71fbbe358df123103f665dd5393ddcc4d915deb1.tar.gz
librewolf-fedora-ff-71fbbe358df123103f665dd5393ddcc4d915deb1.tar.bz2
librewolf-fedora-ff-71fbbe358df123103f665dd5393ddcc4d915deb1.zip
drop 1238661 patch, no longer applies, patched file not shipped anymore
Diffstat (limited to 'Bug-1238661---fix-mozillaSignalTrampoline-to-work-.patch')
-rw-r--r--Bug-1238661---fix-mozillaSignalTrampoline-to-work-.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/Bug-1238661---fix-mozillaSignalTrampoline-to-work-.patch b/Bug-1238661---fix-mozillaSignalTrampoline-to-work-.patch
deleted file mode 100644
index d7e53e7..0000000
--- a/Bug-1238661---fix-mozillaSignalTrampoline-to-work-.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -up firefox-68.0/mfbt/LinuxSignal.h.1238661 firefox-68.0/mfbt/LinuxSignal.h
---- firefox-68.0/mfbt/LinuxSignal.h.1238661 2019-07-08 22:27:29.620749569 +0200
-+++ firefox-68.0/mfbt/LinuxSignal.h 2019-07-08 22:44:17.794112428 +0200
-@@ -22,7 +22,10 @@ __attribute__((naked)) void SignalTrampo
- void* aContext) {
- asm volatile("nop; nop; nop; nop" : : : "memory");
-
-- asm volatile("b %0" : : "X"(H) : "memory");
-+ // Because the assembler may generate additional insturctions below, we
-+ // need to ensure NOPs are inserted first by separating them out above.
-+
-+ asm volatile("bx %0" : : "r"(H), "l"(aSignal), "l"(aInfo), "l"(aContext) : "memory");
- }
-
- # define MOZ_SIGNAL_TRAMPOLINE(h) (mozilla::SignalTrampoline<h>)
bgstack15