summaryrefslogtreecommitdiff
path: root/debian/patches/dyson-offlineasm-isnan.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/dyson-offlineasm-isnan.patch')
-rw-r--r--debian/patches/dyson-offlineasm-isnan.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/debian/patches/dyson-offlineasm-isnan.patch b/debian/patches/dyson-offlineasm-isnan.patch
deleted file mode 100644
index ab69664..0000000
--- a/debian/patches/dyson-offlineasm-isnan.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: qt5webkit/Source/JavaScriptCore/offlineasm/cloop.rb
-===================================================================
---- qt5webkit.orig/Source/JavaScriptCore/offlineasm/cloop.rb 2014-02-02 00:37:54.000000000 +0400
-+++ qt5webkit/Source/JavaScriptCore/offlineasm/cloop.rb 2014-04-28 15:34:41.761144023 +0400
-@@ -398,7 +398,7 @@
- end
-
- def cloopEmitCompareDoubleWithNaNCheckAndBranch(operands, condition)
-- $asm.putc "if (std::isnan(#{operands[0].clValue(:double)}) || isnan(#{operands[1].clValue(:double)})"
-+ $asm.putc "if (std::isnan(#{operands[0].clValue(:double)}) || std::isnan(#{operands[1].clValue(:double)})"
- $asm.putc " || (#{operands[0].clValue(:double)} #{condition} #{operands[1].clValue(:double)}))"
- $asm.putc " goto #{operands[2].cLabel};"
- end