Commit f6261a8a by Richard Kenner Committed by Richard Kenner

* explow.c (expr_size): If DECL and size specified, use it.

From-SVN: r43407
parent 1c5dd43f
Fri Jun 15 18:05:22 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* explow.c (expr_size): If DECL and size specified, use it.
2001-06-15 Zack Weinberg <zackw@stanford.edu>
* doc/cpp.texi: Formatting corrections.
......
......@@ -301,7 +301,13 @@ rtx
expr_size (exp)
tree exp;
{
tree size = size_in_bytes (TREE_TYPE (exp));
tree size;
if (TREE_CODE_CLASS (TREE_CODE (exp)) == 'd'
&& DECL_SIZE_UNIT (exp) != 0)
size = DECL_SIZE_UNIT (exp);
else
size = size_in_bytes (TREE_TYPE (exp));
if (TREE_CODE (size) != INTEGER_CST
&& contains_placeholder_p (size))
......
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