summaryrefslogtreecommitdiff
path: root/www-client/phantomjs/files/phantomjs-python3-udis86-itab.patch
diff options
context:
space:
mode:
Diffstat (limited to 'www-client/phantomjs/files/phantomjs-python3-udis86-itab.patch')
-rw-r--r--www-client/phantomjs/files/phantomjs-python3-udis86-itab.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/www-client/phantomjs/files/phantomjs-python3-udis86-itab.patch b/www-client/phantomjs/files/phantomjs-python3-udis86-itab.patch
deleted file mode 100644
index 7c67e6b8ece0..000000000000
--- a/www-client/phantomjs/files/phantomjs-python3-udis86-itab.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/phantomjs-2.0.0/src/qt/qtwebkit/Source/JavaScriptCore/disassembler/udis86/itab.py 2015-01-24 11:19:52.000000000 +0900
-+++ b/phantomjs-2.0.0/src/qt/qtwebkit/Source/JavaScriptCore/disassembler/udis86/itab.py 2015-03-17 16:20:04.580191055 +0900
-@@ -314,8 +314,7 @@
- self.ItabH.write( "\n" )
-
- self.ItabH.write("\n/* itab entry operand definitions */\n");
-- operands = self.OperandDict.keys()
-- operands.sort()
-+ operands = sorted(self.OperandDict)
- for o in operands:
- self.ItabH.write("#define O_%-7s { %-12s %-8s }\n" %
- (o, self.OperandDict[o][0] + ",", self.OperandDict[o][1]));