Commit bd9f68e0 by Paolo Bonzini Committed by Paolo Bonzini

decl.c (maybe_pad_type): Use TREE_OVERFLOW instead of TREE_CONSTANT_OVERFLOW.

2009-03-30  Paolo Bonzini  <bonzini@gnu.org>

        * gcc-interface/decl.c (maybe_pad_type): Use TREE_OVERFLOW
	instead of TREE_CONSTANT_OVERFLOW.

From-SVN: r145287
parent fedc1775
2009-03-30 Paolo Bonzini <bonzini@gnu.org>
* gcc-interface/decl.c (maybe_pad_type): Use TREE_OVERFLOW
instead of TREE_CONSTANT_OVERFLOW.
2009-03-30 Joseph Myers <joseph@codesourcery.com> 2009-03-30 Joseph Myers <joseph@codesourcery.com>
PR rtl-optimization/323 PR rtl-optimization/323
...@@ -5949,7 +5949,7 @@ maybe_pad_type (tree type, tree size, unsigned int align, ...@@ -5949,7 +5949,7 @@ maybe_pad_type (tree type, tree size, unsigned int align,
&& TREE_CODE (type) == RECORD_TYPE && TREE_CODE (type) == RECORD_TYPE
&& TYPE_MODE (type) == BLKmode && TYPE_MODE (type) == BLKmode
&& TREE_CODE (orig_size) == INTEGER_CST && TREE_CODE (orig_size) == INTEGER_CST
&& !TREE_CONSTANT_OVERFLOW (orig_size) && !TREE_OVERFLOW (orig_size)
&& compare_tree_int (orig_size, MAX_FIXED_MODE_SIZE) <= 0 && compare_tree_int (orig_size, MAX_FIXED_MODE_SIZE) <= 0
&& (!size && (!size
|| (TREE_CODE (size) == INTEGER_CST || (TREE_CODE (size) == INTEGER_CST
......
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