diff options
author | Elliott Hughes <enh@google.com> | 2014-07-09 09:20:17 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-07-09 09:20:17 -0700 |
commit | 40ad229b25671b43dc1cef29ecd5a7807aed5192 (patch) | |
tree | c567e7a6a974ec271fd6771c4fe131445bb58a05 | |
parent | 3c12ae56f402744d1a446ceef7d20f5ea01025c3 (diff) | |
download | android_bionic-40ad229b25671b43dc1cef29ecd5a7807aed5192.tar.gz android_bionic-40ad229b25671b43dc1cef29ecd5a7807aed5192.tar.bz2 android_bionic-40ad229b25671b43dc1cef29ecd5a7807aed5192.zip |
Remove __CTOR_LIST__ from mips/mips64.
Change-Id: I3486b09e30b32ddb67da602cbc2b5fb0402f9764
-rw-r--r-- | linker/arch/mips/begin.S | 5 | ||||
-rw-r--r-- | linker/arch/mips64/begin.S | 6 |
2 files changed, 0 insertions, 11 deletions
diff --git a/linker/arch/mips/begin.S b/linker/arch/mips/begin.S index b782947d9..4a855e6c3 100644 --- a/linker/arch/mips/begin.S +++ b/linker/arch/mips/begin.S @@ -100,8 +100,3 @@ __start: addu $sp, 4*4 /* restore sp */ j $t9 .end __start - - .section .ctors, "wa" - .globl __CTOR_LIST__ -__CTOR_LIST__: - .long -1 diff --git a/linker/arch/mips64/begin.S b/linker/arch/mips64/begin.S index 9e741c022..6827a2cfa 100644 --- a/linker/arch/mips64/begin.S +++ b/linker/arch/mips64/begin.S @@ -120,9 +120,3 @@ __start: move t9, v0 j t9 .end __start - -/* FIXME:Is this still needed? */ - .section .ctors, "wa" - .globl __CTOR_LIST__ -__CTOR_LIST__: - .long -1 |