summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'games-emulation/mupen64-glN64/files/mupen64-glN64-noasmfix.patch')
-rw-r--r--games-emulation/mupen64-glN64/files/mupen64-glN64-noasmfix.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/games-emulation/mupen64-glN64/files/mupen64-glN64-noasmfix.patch b/games-emulation/mupen64-glN64/files/mupen64-glN64-noasmfix.patch
deleted file mode 100644
index 0b924cf095f8..000000000000
--- a/games-emulation/mupen64-glN64/files/mupen64-glN64-noasmfix.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- glN64-0.4.1-rc2/convert.h.old 2005-04-23 16:32:44.000000000 -0700
-+++ glN64-0.4.1-rc2/convert.h 2005-04-23 16:40:43.000000000 -0700
-@@ -442,7 +442,7 @@
- while (numDWords--)
- {
- u32 dword = *(u32 *)src;
-- __asm__ volatile( "bswapl %0\n\t" : "=q"(dword) : "0"(dword) );
-+ dword = ((dword<<24)|((dword<<8)&0x00FF0000)|((dword>>8)&0x0000FF00)|(dword>>24));
- *(u32 *)dest = dword;
- dest = (void *)((int)dest+4);
- src = (void *)((int)src +4);