summaryrefslogtreecommitdiff
path: root/gcc/intl.h
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2009-05-04 13:23:50 +0100
committerJoseph Myers <jsm28@gcc.gnu.org>2009-05-04 13:23:50 +0100
commita3af5087d9b0e120764cb3852da73149be17dfac (patch)
treef7e08408fe3883d28eb96bdfd6745551e07b82a0 /gcc/intl.h
parentea5cd5f17f80c6f6d6cf8b2a0868675e7c8ea391 (diff)
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/intl.h')
-rw-r--r--gcc/intl.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/intl.h b/gcc/intl.h
index 3b6395f367d..902e7ae423c 100644
--- a/gcc/intl.h
+++ b/gcc/intl.h
@@ -1,5 +1,5 @@
/* intl.h - internationalization
- Copyright 1998, 2001, 2003, 2004, 2007 Free Software Foundation, Inc.
+ Copyright 1998, 2001, 2003, 2004, 2007, 2009 Free Software Foundation, Inc.
GCC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -56,5 +56,7 @@ extern size_t gcc_gettext_width (const char *);
extern const char *open_quote;
extern const char *close_quote;
+extern const char *locale_encoding;
+extern bool locale_utf8;
#endif /* intl.h */