Commit b87ac615 by Richard Henderson Committed by Richard Henderson

Handle SIZE_TYPE being unsigned short.

From-SVN: r176995
parent 77b06940
2011-07-31 Richard Henderson <rth@redhat.com>
* stor-layout.c (initialize_sizetypes): Handle unsigned short.
* tree.c (build_common_tree_nodes): Likewise.
2011-07-31 Kaz Kojima <kkojima@gcc.gnu.org>
PR target/49880
......
......@@ -2203,6 +2203,8 @@ initialize_sizetypes (void)
precision = LONG_TYPE_SIZE;
else if (strcmp (SIZE_TYPE, "long long unsigned int") == 0)
precision = LONG_LONG_TYPE_SIZE;
else if (strcmp (SIZE_TYPE, "short unsigned int") == 0)
precision = SHORT_TYPE_SIZE;
else
gcc_unreachable ();
......
......@@ -9228,6 +9228,8 @@ build_common_tree_nodes (bool signed_char, bool short_double)
size_type_node = long_unsigned_type_node;
else if (strcmp (SIZE_TYPE, "long long unsigned int") == 0)
size_type_node = long_long_unsigned_type_node;
else if (strcmp (SIZE_TYPE, "short unsigned int") == 0)
size_type_node = short_unsigned_type_node;
else
gcc_unreachable ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment