summaryrefslogtreecommitdiff
path: root/glibc/glibc-2.2.5/dl-machine-sh.patch
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
committerChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
commit2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch)
treebf879bea7ef8517ba8c3d1286ef300401d3d484c /glibc/glibc-2.2.5/dl-machine-sh.patch
parent101e2f1623def0a355d20aacb8bd93810703e834 (diff)
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded 2004/12/09 03:39:39-06:00 kergoth.com!kergoth Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit. BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'glibc/glibc-2.2.5/dl-machine-sh.patch')
-rw-r--r--glibc/glibc-2.2.5/dl-machine-sh.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/glibc/glibc-2.2.5/dl-machine-sh.patch b/glibc/glibc-2.2.5/dl-machine-sh.patch
deleted file mode 100644
index c5f84b42a4..0000000000
--- a/glibc/glibc-2.2.5/dl-machine-sh.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-
-#
-# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
-#
-
---- glibc-2.2.5/sysdeps/sh/dl-machine.h~dl-machine-sh.patch 2004-09-03 19:00:33.000000000 -0500
-+++ glibc-2.2.5/sysdeps/sh/dl-machine.h 2004-09-03 19:00:37.000000000 -0500
-@@ -53,16 +53,16 @@
- elf_machine_load_address (void)
- {
- Elf32_Addr addr;
-- asm ("mov.l .L1,r0\n\
-- mov.l .L3,r2\n\
-+ asm ("mov.l 1f,r0\n\
-+ mov.l 3f,r2\n\
- add r12,r2\n\
- mov.l @(r0,r12),r0\n\
-- bra .L2\n\
-+ bra 2f\n\
- sub r0,r2\n\
- .align 2\n\
-- .L1: .long _dl_start@GOT\n\
-- .L3: .long _dl_start@GOTOFF\n\
-- .L2: mov r2,%0"
-+ 1: .long _dl_start@GOT\n\
-+ 3: .long _dl_start@GOTOFF\n\
-+ 2: mov r2,%0"
- : "=r" (addr) : : "r0", "r1", "r2");
- return addr;
- }