summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/luajit/luajit-2.0.0/disable_lj_vm_foldarith_for_spe.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-devtools/luajit/luajit-2.0.0/disable_lj_vm_foldarith_for_spe.patch')
-rw-r--r--meta-oe/recipes-devtools/luajit/luajit-2.0.0/disable_lj_vm_foldarith_for_spe.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/meta-oe/recipes-devtools/luajit/luajit-2.0.0/disable_lj_vm_foldarith_for_spe.patch b/meta-oe/recipes-devtools/luajit/luajit-2.0.0/disable_lj_vm_foldarith_for_spe.patch
deleted file mode 100644
index c96fc77c7..000000000
--- a/meta-oe/recipes-devtools/luajit/luajit-2.0.0/disable_lj_vm_foldarith_for_spe.patch
+++ /dev/null
@@ -1,13 +0,0 @@
1Index: LuaJIT-2.0.0/src/lj_vmmath.c
2===================================================================
3--- LuaJIT-2.0.0.orig/src/lj_vmmath.c 2012-11-08 02:10:00.000000000 -0800
4+++ LuaJIT-2.0.0/src/lj_vmmath.c 2012-11-19 22:15:28.613527136 -0800
5@@ -22,7 +22,7 @@
6 LJ_FUNCA double lj_vm_tanh(double x) { return tanh(x); }
7 #endif
8
9-#if !LJ_TARGET_X86ORX64
10+#if !(LJ_TARGET_X86ORX64 || LJ_TARGET_PPCSPE)
11 double lj_vm_foldarith(double x, double y, int op)
12 {
13 switch (op) {