summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2019-01-29 11:54:31 +0100
committerMartin Stransky <stransky@redhat.com>2019-01-29 11:54:31 +0100
commit6ed757428577ff853c30d971e17702d1136beb0a (patch)
treecf905a399f9fef62270e69c9b636086ef9ca9c1f
parentDisabled system icu (diff)
downloadlibrewolf-fedora-ff-6ed757428577ff853c30d971e17702d1136beb0a.tar.gz
librewolf-fedora-ff-6ed757428577ff853c30d971e17702d1136beb0a.tar.bz2
librewolf-fedora-ff-6ed757428577ff853c30d971e17702d1136beb0a.zip
aarch64 build fix
-rw-r--r--rhbz-1354671.patch14
1 files changed, 7 insertions, 7 deletions
diff --git a/rhbz-1354671.patch b/rhbz-1354671.patch
index 6ee89b7..0e22dab 100644
--- a/rhbz-1354671.patch
+++ b/rhbz-1354671.patch
@@ -1,12 +1,12 @@
-diff -up firefox-53.0/layout/base/nsIPresShell.h.1354671 firefox-53.0/layout/base/nsIPresShell.h
---- firefox-53.0/layout/base/nsIPresShell.h.1354671 2017-04-27 13:07:43.808653320 +0200
-+++ firefox-53.0/layout/base/nsIPresShell.h 2017-04-27 13:09:40.404427641 +0200
-@@ -212,7 +212,7 @@ public:
+diff -up firefox-65.0/layout/base/nsIPresShell.h.1354671 firefox-65.0/layout/base/nsIPresShell.h
+--- firefox-65.0/layout/base/nsIPresShell.h.1354671 2019-01-29 11:50:08.516649643 +0100
++++ firefox-65.0/layout/base/nsIPresShell.h 2019-01-29 11:51:48.930258629 +0100
+@@ -205,7 +205,7 @@ class nsIPresShell : public nsStubDocume
* to the same aSize value. AllocateFrame is infallible and will abort
* on out-of-memory.
*/
-- void* AllocateFrame(nsQueryFrame::FrameIID aID, size_t aSize)
-+ void* __attribute__((optimize("no-lifetime-dse"))) AllocateFrame(nsQueryFrame::FrameIID aID, size_t aSize)
- {
+- void* AllocateFrame(nsQueryFrame::FrameIID aID, size_t aSize) {
++ void* __attribute__((optimize("no-lifetime-dse"))) AllocateFrame(nsQueryFrame::FrameIID aID, size_t aSize) {
void* result = mFrameArena.AllocateByFrameID(aID, aSize);
RecordAlloc(result);
+ return result;
bgstack15