summaryrefslogtreecommitdiff
path: root/debian/patches
diff options
context:
space:
mode:
authorLisandro Damián Nicanor Pérez Meyer <perezmeyer@gmail.com>2013-12-17 14:37:39 -0300
committerLisandro Damián Nicanor Pérez Meyer <perezmeyer@gmail.com>2013-12-17 14:37:39 -0300
commitbd23303f9c61c0665334c221907ee12648f6dc37 (patch)
tree22681764995e4bd367e80641264b20ceada53d57 /debian/patches
parentc7cd17c52ed77830eb3ec2956ab4261c090948c7 (diff)
downloadqt5webkit-bd23303f9c61c0665334c221907ee12648f6dc37.tar.gz
Refresh 05_sparc_unaligned_access.diff.
Diffstat (limited to 'debian/patches')
-rw-r--r--debian/patches/05_sparc_unaligned_access.diff9
1 files changed, 6 insertions, 3 deletions
diff --git a/debian/patches/05_sparc_unaligned_access.diff b/debian/patches/05_sparc_unaligned_access.diff
index 5a10b9e..f875008 100644
--- a/debian/patches/05_sparc_unaligned_access.diff
+++ b/debian/patches/05_sparc_unaligned_access.diff
@@ -1,6 +1,7 @@
Description: fix some alignment problems on sparc.
Author: Mike Hommey <glandium@debian.org>
Author: Timo Jyrinki <timo@debian.org>
+Last-Update: 2013-12-17
---
Source/JavaScriptCore/wtf/ListHashSet.h | 9 +++------
@@ -8,7 +9,7 @@ Author: Timo Jyrinki <timo@debian.org>
--- a/Source/WTF/wtf/ListHashSet.h
+++ b/Source/WTF/wtf/ListHashSet.h
-@@ -168,7 +168,7 @@ namespace WTF {
+@@ -173,7 +173,7 @@ namespace WTF {
: m_freeList(pool())
, m_isDoneWithInitialFreeList(false)
{
@@ -17,14 +18,16 @@ Author: Timo Jyrinki <timo@debian.org>
}
Node* allocate()
-@@ -217,16 +217,13 @@ namespace WTF {
+@@ -217,7 +217,7 @@ namespace WTF {
}
private:
- Node* pool() { return reinterpret_cast_ptr<Node*>(m_pool.pool); }
+ Node* pool() { return reinterpret_cast_ptr<Node*>(m_pool); }
Node* pastPool() { return pool() + m_poolSize; }
-
+ bool inPool(Node* node)
+ {
+@@ -227,10 +227,7 @@ namespace WTF {
Node* m_freeList;
bool m_isDoneWithInitialFreeList;
static const size_t m_poolSize = inlineCapacity;