diff options
Diffstat (limited to 'gcc/cgraphclones.c')
-rw-r--r-- | gcc/cgraphclones.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gcc/cgraphclones.c b/gcc/cgraphclones.c index 354655e85d2..07ceb1a80d4 100644 --- a/gcc/cgraphclones.c +++ b/gcc/cgraphclones.c @@ -512,13 +512,7 @@ clone_function_name_1 (const char *name, const char *suffix) prefix = XALLOCAVEC (char, len + strlen (suffix) + 2); memcpy (prefix, name, len); strcpy (prefix + len + 1, suffix); -#ifndef NO_DOT_IN_LABEL - prefix[len] = '.'; -#elif !defined NO_DOLLAR_IN_LABEL - prefix[len] = '$'; -#else - prefix[len] = '_'; -#endif + prefix[len] = symbol_table::symbol_suffix_separator (); ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix, clone_fn_id_num++); return get_identifier (tmp_name); } |