aboutsummaryrefslogtreecommitdiff
path: root/gcc/lto
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2010-01-08 16:57:59 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2010-01-08 16:57:59 +0000
commitc59449fa245b3ec2397a7020dab35deb876b9c5e (patch)
tree277fb6ae3b56b939e10755bbdebd16395350b1a0 /gcc/lto
parentc8ae061371b68ca6a1887f502f3ebebee28ff64f (diff)
downloadgcc-c59449fa245b3ec2397a7020dab35deb876b9c5e.zip
gcc-c59449fa245b3ec2397a7020dab35deb876b9c5e.tar.gz
gcc-c59449fa245b3ec2397a7020dab35deb876b9c5e.tar.bz2
re PR lto/42528 (ICE with -flto and -fsigned-char)
2010-01-08 Richard Guenther <rguenther@suse.de> PR lto/42528 * c.opt (fsigned-char): Also let LTO handle this option. (funsigned-char): Likewise. lto/ * lto-lang.c (lto_handle_option): Handle -f[un]signed-char. (lto_init): Do not init char_type_node in a standard way but according to flag_signed_char. * gcc.dg/lto/20100103-1_0.c: New testcase. * gcc.dg/lto/20100103-2_0.c: Likewise. From-SVN: r155740
Diffstat (limited to 'gcc/lto')
-rw-r--r--gcc/lto/ChangeLog7
-rw-r--r--gcc/lto/lto-lang.c13
2 files changed, 19 insertions, 1 deletions
diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog
index 92e595f..5e52527 100644
--- a/gcc/lto/ChangeLog
+++ b/gcc/lto/ChangeLog
@@ -1,3 +1,10 @@
+2010-01-08 Richard Guenther <rguenther@suse.de>
+
+ PR lto/42528
+ * lto-lang.c (lto_handle_option): Handle -f[un]signed-char.
+ (lto_init): Do not init char_type_node in a standard way
+ but according to flag_signed_char.
+
2010-01-03 H.J. Lu <hongjiu.lu@intel.com>
PR lto/41564
diff --git a/gcc/lto/lto-lang.c b/gcc/lto/lto-lang.c
index 970265c..05577a2 100644
--- a/gcc/lto/lto-lang.c
+++ b/gcc/lto/lto-lang.c
@@ -632,6 +632,14 @@ lto_handle_option (size_t scode, const char *arg, int value ATTRIBUTE_UNUSED)
warn_psabi = value;
break;
+ case OPT_fsigned_char:
+ flag_signed_char = value;
+ break;
+
+ case OPT_funsigned_char:
+ flag_signed_char = !value;
+ break;
+
default:
break;
}
@@ -1036,8 +1044,11 @@ lto_init (void)
/* Share char_type_node with whatever would be the default for the target.
char_type_node will be used for internal types such as
va_list_type_node but will not be present in the lto stream. */
+ /* ??? This breaks the more common case of consistent but non-standard
+ setting of flag_signed_char, so share according to flag_signed_char.
+ See PR42528. */
char_type_node
- = DEFAULT_SIGNED_CHAR ? signed_char_type_node : unsigned_char_type_node;
+ = flag_signed_char ? signed_char_type_node : unsigned_char_type_node;
/* Tell the middle end what type to use for the size of objects. */
if (strcmp (SIZE_TYPE, "unsigned int") == 0)