Commit 580b8ee2 by Richard Stallman

(plain_type_1): Handle LONG_TYPE_SIZE like INT_TYPE_SIZE.

From-SVN: r2739
parent 7d87c851
......@@ -452,6 +452,8 @@ plain_type_1 (type)
return (TREE_UNSIGNED (type) ? T_USHORT : T_SHORT);
if (size == INT_TYPE_SIZE)
return (TREE_UNSIGNED (type) ? T_UINT : T_INT);
if (size == LONG_TYPE_SIZE)
return (TREE_UNSIGNED (type) ? T_ULONG : T_LONG);
return 0;
}
......
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