diff options
author | Renlin Li <Renlin.Li@arm.com> | 2014-11-11 15:18:04 +0000 |
---|---|---|
committer | Marcus Shawcroft <marcus.shawcroft@arm.com> | 2014-11-11 15:18:04 +0000 |
commit | e42643491c47dcd1c226b4f00f716023e9bcc5ca (patch) | |
tree | 6bf5ef7bb083ed3471e555268e5aecc975ba53e2 | |
parent | c14e752fc73d34c75d4f84f37fea8e0b1734cf98 (diff) | |
download | glibc-e42643491c47dcd1c226b4f00f716023e9bcc5ca.tar.gz glibc-e42643491c47dcd1c226b4f00f716023e9bcc5ca.tar.xz glibc-e42643491c47dcd1c226b4f00f716023e9bcc5ca.zip |
[AArch64] End frame record chain correctly.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | sysdeps/aarch64/start.S | 1 |
3 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 26ef072353..31139c1743 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-11-10 Renlin Li <Renlin.Li@arm.com> + + [BZ #17555] + * sysdeps/aarch64/start.S (_start): Delete x29 overwritten assignment. + 2014-10-22 Maciej W. Rozycki <macro@codesourcery.com> [BZ #17485] diff --git a/NEWS b/NEWS index 29229d74ff..1df7f5e600 100644 --- a/NEWS +++ b/NEWS @@ -9,7 +9,7 @@ Version 2.20.1 * The following bugs are resolved with this release: - 17266, 17370, 17371, 17460, 17485. + 17266, 17370, 17371, 17460, 17485, 17555. Version 2.20 diff --git a/sysdeps/aarch64/start.S b/sysdeps/aarch64/start.S index 35d603ae9e..69b45eac44 100644 --- a/sysdeps/aarch64/start.S +++ b/sysdeps/aarch64/start.S @@ -47,7 +47,6 @@ _start: /* Create an initial frame with 0 LR and FP */ mov x29, #0 mov x30, #0 - mov x29, sp /* Setup rtld_fini in argument register */ mov x5, x0 |