diff options
author | Joseph Myers <joseph@codesourcery.com> | 2009-05-04 13:23:50 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2009-05-04 13:23:50 +0100 |
commit | a3af5087d9b0e120764cb3852da73149be17dfac (patch) | |
tree | f7e08408fe3883d28eb96bdfd6745551e07b82a0 /gcc/varasm.c | |
parent | ea5cd5f17f80c6f6d6cf8b2a0868675e7c8ea391 (diff) | |
download | gcc-a3af5087d9b0e120764cb3852da73149be17dfac.zip gcc-a3af5087d9b0e120764cb3852da73149be17dfac.tar.gz gcc-a3af5087d9b0e120764cb3852da73149be17dfac.tar.bz2 |
intl.c (locale_encoding, [...]): New.
* intl.c (locale_encoding, locale_utf8): New.
(gcc_init_libintl): Initialize locale_encoding and locale_utf8.
* intl.h (locale_encoding, locale_utf8): Declare.
* pretty-print.c: Include ggc.h. Include iconv.h if HAVE_ICONV.
(pp_base_tree_identifier, decode_utf8_char, identifier_to_locale):
New.
* pretty-print.h (pp_identifier): Call identifier_to_locale on ID
argument.
(pp_tree_identifier): Define to call pp_base_tree_identifier.
(pp_base_tree_identifier): Declare as function.
(identifier_to_locale): Declare.
* Makefile.in (pretty-print.o): Update dependencies.
* varasm.c (finish_aliases_1): Use %qE for identifiers in
diagnostics.
testsuite:
* gcc.dg/attr-alias-5.c, gcc.dg/ucnid-7.c: New tests.
From-SVN: r147096
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 061ff06..0a7b480 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -5344,13 +5344,13 @@ finish_aliases_1 (void) if (target_decl == NULL) { if (! lookup_attribute ("weakref", DECL_ATTRIBUTES (p->decl))) - error ("%q+D aliased to undefined symbol %qs", - p->decl, IDENTIFIER_POINTER (p->target)); + error ("%q+D aliased to undefined symbol %qE", + p->decl, p->target); } else if (DECL_EXTERNAL (target_decl) && ! lookup_attribute ("weakref", DECL_ATTRIBUTES (p->decl))) - error ("%q+D aliased to external symbol %qs", - p->decl, IDENTIFIER_POINTER (p->target)); + error ("%q+D aliased to external symbol %qE", + p->decl, p->target); } } |