]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
PowerPC: Fix gprof entry point for LE
authorAdhemerval Zanella <azanella@linux.vnet.ibm.com>
Tue, 29 Jul 2014 18:56:44 +0000 (13:56 -0500)
committerTulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
Mon, 24 Aug 2015 18:28:04 +0000 (15:28 -0300)
This patch fixes the ELFv2 gprof entry point since the ABI
does not define function descriptors.  It fixes BZ#17213.

Conflicts:
NEWS

ChangeLog
NEWS
sysdeps/powerpc/powerpc64/entry.h

index cecd6ecb714c84d9dea35cffb4796a63785fbd67..0e15efb411dfda582be9566c31cca9d05e0790fd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-07-29  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
+
+       [BZ #17213]
+       * sysdeps/powerpc/powerpc64/entry.h: Fix TEXT_START definition for
+       powerpc64le.
+
 2014-11-11  Renlin Li  <Renlin.Li@arm.com>
 
        [BZ #17555]
diff --git a/NEWS b/NEWS
index d74f4a6d586999d92bb49cb8c89b3a438be2e3ca..24343f1b1636e24ef89fb4d2154ecc00d2e8f9f0 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -10,7 +10,7 @@ Version 2.19.1
 * The following bugs are resolved with this release:
 
   15946, 16545, 16574, 16623, 16695, 16878, 16882, 16885, 16916, 16932,
-  16943, 16958, 17048, 17069, 17137, 17263, 17325, 17555.
+  16943, 16958, 17048, 17069, 17137, 17213, 17263, 17325, 17555.
 
 * Reverted change of ABI data structures for s390 and s390x:
   On s390 and s390x the size of struct ucontext and jmp_buf was increased in
index 76ead1dd3bdd89655681aae0cf20874163dd451d..30553c168ad8f1cf3ccb39864656b15a4bb52f0b 100644 (file)
@@ -23,6 +23,7 @@ extern void _start (void);
 
 #define ENTRY_POINT _start
 
+#if _CALL_ELF != 2
 /* We have to provide a special declaration.  */
 #define ENTRY_POINT_DECL(class) class void _start (void);
 
@@ -33,3 +34,4 @@ extern void _start (void);
 #define TEXT_START \
   ({ extern unsigned long int _start_as_data[] asm ("_start");  \
      _start_as_data[0]; })
+#endif