diff options
author | Marek Polacek <polacek@redhat.com> | 2012-07-10 14:30:24 +0200 |
---|---|---|
committer | Marek Polacek <polacek@redhat.com> | 2012-07-10 14:30:24 +0200 |
commit | 7b8e0d49cbfd8a911978d4b72f3d97e11a6d34ec (patch) | |
tree | b6e8d0b491e2e4e78d1e4b41d3edadeb04392395 /locale | |
parent | c1d00790348352d9bd342b9cebe70cb416f63798 (diff) | |
download | glibc-7b8e0d49cbfd8a911978d4b72f3d97e11a6d34ec.tar.gz glibc-7b8e0d49cbfd8a911978d4b72f3d97e11a6d34ec.tar.xz glibc-7b8e0d49cbfd8a911978d4b72f3d97e11a6d34ec.zip |
Get rid of ASM_GLOBAL_DIRECTIVE.
Diffstat (limited to 'locale')
-rw-r--r-- | locale/localeinfo.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/locale/localeinfo.h b/locale/localeinfo.h index 52f8121375..39c15989f2 100644 --- a/locale/localeinfo.h +++ b/locale/localeinfo.h @@ -255,11 +255,8 @@ extern __thread struct __locale_data *const *_nl_current_##category \ #define _NL_CURRENT_DEFINE(category) \ __thread struct __locale_data *const *_nl_current_##category \ attribute_hidden = &_nl_global_locale.__locales[category]; \ - asm (_NL_CURRENT_DEFINE_STRINGIFY (ASM_GLOBAL_DIRECTIVE) \ - " " __SYMBOL_PREFIX "_nl_current_" #category "_used\n" \ + asm (".globl " __SYMBOL_PREFIX "_nl_current_" #category "_used\n" \ _NL_CURRENT_DEFINE_ABS (_nl_current_##category##_used, 1)); -#define _NL_CURRENT_DEFINE_STRINGIFY(x) _NL_CURRENT_DEFINE_STRINGIFY_1 (x) -#define _NL_CURRENT_DEFINE_STRINGIFY_1(x) #x #ifdef HAVE_ASM_SET_DIRECTIVE # define _NL_CURRENT_DEFINE_ABS(sym, val) ".set " #sym ", " #val #else |