diff options
author | Marek Polacek <polacek@redhat.com> | 2012-08-02 21:04:29 +0200 |
---|---|---|
committer | Marek Polacek <polacek@redhat.com> | 2012-08-02 21:04:29 +0200 |
commit | b67e9372b28ef339581b724c32acf7cf0977001f (patch) | |
tree | 7735b77739716800e4266e5177a20e85a9adde3f /sysdeps/i386/i386-mcount.S | |
parent | 2747bf9adfd7bee7a44bb75c0279a88a1c89df30 (diff) | |
download | glibc-b67e9372b28ef339581b724c32acf7cf0977001f.tar.gz glibc-b67e9372b28ef339581b724c32acf7cf0977001f.tar.xz glibc-b67e9372b28ef339581b724c32acf7cf0977001f.zip |
Get rid of ASM_TYPE_DIRECTIVE{,_PREFIX}.
Diffstat (limited to 'sysdeps/i386/i386-mcount.S')
-rw-r--r-- | sysdeps/i386/i386-mcount.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/i386/i386-mcount.S b/sysdeps/i386/i386-mcount.S index 11f7493c3a..dfe19a280a 100644 --- a/sysdeps/i386/i386-mcount.S +++ b/sysdeps/i386/i386-mcount.S @@ -27,7 +27,7 @@ - some (future) systems might want to pass parameters in registers. */ .globl C_SYMBOL_NAME(_mcount) - ASM_TYPE_DIRECTIVE(C_SYMBOL_NAME(_mcount), @function) + .type C_SYMBOL_NAME(_mcount), @function .align ALIGNARG(4) C_LABEL(_mcount) /* Save the caller-clobbered registers. */ @@ -55,7 +55,7 @@ weak_alias (_mcount, mcount) /* Same as above, but doesn't require a frame pointer */ .globl C_SYMBOL_NAME(__fentry__) - ASM_TYPE_DIRECTIVE(C_SYMBOL_NAME(__fentry__), @function) + .type C_SYMBOL_NAME(__fentry__), @function .align ALIGNARG(4) C_LABEL(__fentry__) /* Save the caller-clobbered registers. */ |