From dfe84fd8c545b6f2da721e3f86f9b00f31711abd Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Sun, 4 Jan 2015 23:01:16 +0100 Subject: PPC/e500: Drop support for this architecture. --- src/jit/bcsave.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/jit') diff --git a/src/jit/bcsave.lua b/src/jit/bcsave.lua index 8303263d..05bc78d6 100644 --- a/src/jit/bcsave.lua +++ b/src/jit/bcsave.lua @@ -63,7 +63,7 @@ local map_type = { } local map_arch = { - x86 = true, x64 = true, arm = true, ppc = true, ppcspe = true, + x86 = true, x64 = true, arm = true, ppc = true, mips = true, mipsel = true, } @@ -202,7 +202,7 @@ typedef struct { local is64, isbe = false, false if ctx.arch == "x64" then is64 = true - elseif ctx.arch == "ppc" or ctx.arch == "ppcspe" or ctx.arch == "mips" then + elseif ctx.arch == "ppc" or ctx.arch == "mips" then isbe = true end @@ -237,7 +237,7 @@ typedef struct { hdr.eendian = isbe and 2 or 1 hdr.eversion = 1 hdr.type = f16(1) - hdr.machine = f16(({ x86=3, x64=62, arm=40, ppc=20, ppcspe=20, mips=8, mipsel=8 })[ctx.arch]) + hdr.machine = f16(({ x86=3, x64=62, arm=40, ppc=20, mips=8, mipsel=8 })[ctx.arch]) if ctx.arch == "mips" or ctx.arch == "mipsel" then hdr.flags = 0x50001006 end -- cgit v1.2.3-55-g6feb