diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2012-08-04 09:57:37 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2012-08-04 09:57:37 -0400 |
commit | 5c5335535596f043981d1f7f458817f894227937 (patch) | |
tree | 080a9e4216de9bde1194b8cef7d27008ff1e90d5 /ports | |
parent | faa2bccba5a3f5d62b941e81d960579e2175aa11 (diff) | |
download | glibc-5c5335535596f043981d1f7f458817f894227937.tar.gz glibc-5c5335535596f043981d1f7f458817f894227937.tar.xz glibc-5c5335535596f043981d1f7f458817f894227937.zip |
tile: fix typo in ASM_TYPE_DIRECTIVE fix
Diffstat (limited to 'ports')
-rw-r--r-- | ports/sysdeps/tile/sysdep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/sysdeps/tile/sysdep.h b/ports/sysdeps/tile/sysdep.h index a268872f71..4f27cb2bed 100644 --- a/ports/sysdeps/tile/sysdep.h +++ b/ports/sysdeps/tile/sysdep.h @@ -30,7 +30,7 @@ /* Define an entry point visible from C. */ #define ENTRY(name) \ .globl C_SYMBOL_NAME(name); \ - .type C_SYMBOL_NAME(name),@function \ + .type C_SYMBOL_NAME(name),@function; \ .align 8; \ C_LABEL(name) \ cfi_startproc; \ |