diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-08-02 20:57:45 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-08-02 20:57:45 +0000 |
commit | 606dd3d9f42bc741f919ebdb2d86a59aaf525023 (patch) | |
tree | ff87bbd5b5e1d76663c9e572fa86dcb295e66098 /ports/sysdeps/arm | |
parent | d24416315b916c101f8898df93fb234595b48fd8 (diff) | |
download | glibc-606dd3d9f42bc741f919ebdb2d86a59aaf525023.tar glibc-606dd3d9f42bc741f919ebdb2d86a59aaf525023.tar.gz glibc-606dd3d9f42bc741f919ebdb2d86a59aaf525023.tar.bz2 glibc-606dd3d9f42bc741f919ebdb2d86a59aaf525023.zip |
Remove ASM_TYPE_DIRECTIVE for ARM.
Diffstat (limited to 'ports/sysdeps/arm')
-rw-r--r-- | ports/sysdeps/arm/sysdep.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ports/sysdeps/arm/sysdep.h b/ports/sysdeps/arm/sysdep.h index cd3d70b5aa..6ec2bd61c2 100644 --- a/ports/sysdeps/arm/sysdep.h +++ b/ports/sysdeps/arm/sysdep.h @@ -30,8 +30,6 @@ /* Syntactic details of assembler. */ #define ALIGNARG(log2) log2 -/* For ELF we need the `.type' directive to make shared libs work right. */ -#define ASM_TYPE_DIRECTIVE(name,typearg) .type name,%##typearg; #define ASM_SIZE_DIRECTIVE(name) .size name,.-name #define PLTJMP(_x) _x##(PLT) @@ -63,7 +61,7 @@ /* Define an entry point visible from C. */ #define ENTRY(name) \ .globl C_SYMBOL_NAME(name); \ - ASM_TYPE_DIRECTIVE (C_SYMBOL_NAME(name),function) \ + .type C_SYMBOL_NAME(name),%function; \ .align ALIGNARG(4); \ C_LABEL(name) \ .cfi_sections .debug_frame; \ |