diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2013-08-12 11:27:37 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2013-08-12 11:27:37 +0000 |
commit | 387b5847251072a23f633749fa1beaaf0177065e (patch) | |
tree | 910dc5f0e7c929fb1047fd4b738e8071be48f091 /libgloss | |
parent | 423229a5b1a3fa3668ace36d353eac7a3d23149f (diff) | |
download | newlib-387b5847251072a23f633749fa1beaaf0177065e.zip newlib-387b5847251072a23f633749fa1beaaf0177065e.tar.gz newlib-387b5847251072a23f633749fa1beaaf0177065e.tar.bz2 |
* aarch64/crt0.S: Remove 'start'.
* arm/crt0.S: Ditto.
* arm/redboot-crt0.S: Ditto.
Diffstat (limited to 'libgloss')
-rw-r--r-- | libgloss/ChangeLog | 5 | ||||
-rw-r--r-- | libgloss/aarch64/crt0.S | 1 | ||||
-rw-r--r-- | libgloss/arm/crt0.S | 1 | ||||
-rw-r--r-- | libgloss/arm/redboot-crt0.S | 1 |
4 files changed, 5 insertions, 3 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index e7e7ed5..dc6c971 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,8 @@ +2013-08-12 Yufeng Zhang <Yufeng.Zhang@arm.com> + + * aarch64/crt0.S: Remove 'start'. + * arm/crt0.S: Ditto. + * arm/redboot-crt0.S: Ditto. 2013-07-24 Steve Ellcey <sellcey@mips.com> diff --git a/libgloss/aarch64/crt0.S b/libgloss/aarch64/crt0.S index 1a5cabb..ae6264d 100644 --- a/libgloss/aarch64/crt0.S +++ b/libgloss/aarch64/crt0.S @@ -81,7 +81,6 @@ FUNC_START _mainCRTStartup FUNC_START _start - FUNC_START start /* Start by setting up a stack */ diff --git a/libgloss/arm/crt0.S b/libgloss/arm/crt0.S index f7ed5c5..86ee2cd 100644 --- a/libgloss/arm/crt0.S +++ b/libgloss/arm/crt0.S @@ -72,7 +72,6 @@ FUNC_START _mainCRTStartup FUNC_START _start - FUNC_START start #if defined(__ELF__) && !defined(__USING_SJLJ_EXCEPTIONS__) /* Annotation for EABI unwinding tables. */ .fnstart diff --git a/libgloss/arm/redboot-crt0.S b/libgloss/arm/redboot-crt0.S index 88eb60d..1d90228 100644 --- a/libgloss/arm/redboot-crt0.S +++ b/libgloss/arm/redboot-crt0.S @@ -28,7 +28,6 @@ .endm .code 32 #endif - FUNC_START SYM_NAME(start) FUNC_START SYM_NAME(_start) /* Unnecessary to set fp for v6-m/v7-m, which don't support ARM state. */ |