diff options
author | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-06-12 05:59:31 +0000 |
---|---|---|
committer | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-06-12 05:59:31 +0000 |
commit | 8f88884c60abfaf2b203ec50fa93acd5589b3ebe (patch) | |
tree | 6d2d376897e616c704b816e61e2d7c8868c884cc /gcc/lto/lto-lang.c | |
parent | 0eaf0c44607e906893ebb76056c501c8a153d327 (diff) | |
download | gcc-8f88884c60abfaf2b203ec50fa93acd5589b3ebe.tar.gz |
* lto-lang.c (lto_type_for_size): Include intN types.
(lto_type_for_mode): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@224408 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/lto/lto-lang.c')
-rw-r--r-- | gcc/lto/lto-lang.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gcc/lto/lto-lang.c b/gcc/lto/lto-lang.c index f9c908add65..349abef5b86 100644 --- a/gcc/lto/lto-lang.c +++ b/gcc/lto/lto-lang.c @@ -830,6 +830,8 @@ lto_post_options (const char **pfilename ATTRIBUTE_UNUSED) static tree lto_type_for_size (unsigned precision, int unsignedp) { + int i; + if (precision == TYPE_PRECISION (integer_type_node)) return unsignedp ? unsigned_type_node : integer_type_node; @@ -847,6 +849,12 @@ lto_type_for_size (unsigned precision, int unsignedp) ? long_long_unsigned_type_node : long_long_integer_type_node; + for (i = 0; i < NUM_INT_N_ENTS; i ++) + if (int_n_enabled_p[i] + && precision == int_n_data[i].bitsize) + return (unsignedp ? int_n_trees[i].unsigned_type + : int_n_trees[i].signed_type); + if (precision <= TYPE_PRECISION (intQI_type_node)) return unsignedp ? unsigned_intQI_type_node : intQI_type_node; @@ -876,6 +884,7 @@ static tree lto_type_for_mode (machine_mode mode, int unsigned_p) { tree t; + int i; if (mode == TYPE_MODE (integer_type_node)) return unsigned_p ? unsigned_type_node : integer_type_node; @@ -892,6 +901,12 @@ lto_type_for_mode (machine_mode mode, int unsigned_p) if (mode == TYPE_MODE (long_long_integer_type_node)) return unsigned_p ? long_long_unsigned_type_node : long_long_integer_type_node; + for (i = 0; i < NUM_INT_N_ENTS; i ++) + if (int_n_enabled_p[i] + && mode == int_n_data[i].m) + return (unsigned_p ? int_n_trees[i].unsigned_type + : int_n_trees[i].signed_type); + if (mode == QImode) return unsigned_p ? unsigned_intQI_type_node : intQI_type_node; |