diff options
Diffstat (limited to 'gcc/dwarf2asm.c')
-rw-r--r-- | gcc/dwarf2asm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarf2asm.c b/gcc/dwarf2asm.c index 53a02c7fcd5..80be6513721 100644 --- a/gcc/dwarf2asm.c +++ b/gcc/dwarf2asm.c @@ -739,7 +739,7 @@ dw2_force_const_mem (x) if (GET_CODE (x) != SYMBOL_REF) abort (); - STRIP_NAME_ENCODING (str, XSTR (x, 0)); + str = (* targetm.strip_name_encoding) (XSTR (x, 0)); node = splay_tree_lookup (indirect_pool, (splay_tree_key) str); if (node) decl = (tree) node->value; |