Commit e0e4ac7f by Andrew Pinski Committed by Andrew Pinski

tree.c (reconstruct_complex_type): Use TYPE_READONLY and TYPE_VOLATILE.

2004-04-05  Andrew Pinski  <pinskia@physics.uc.edu>

        * tree.c (reconstruct_complex_type): Use TYPE_READONLY
        and TYPE_VOLATILE.

From-SVN: r80438
parent 54bcf05e
2004-04-05 Andrew Pinski <pinskia@physics.uc.edu>
* tree.c (reconstruct_complex_type): Use TYPE_READONLY
and TYPE_VOLATILE.
2004-04-05 Caroline Tice <ctice@apple.com> 2004-04-05 Caroline Tice <ctice@apple.com>
* gcc.c (combine_flag): New global variable, for new driver option. * gcc.c (combine_flag): New global variable, for new driver option.
......
...@@ -5344,8 +5344,8 @@ reconstruct_complex_type (tree type, tree bottom) ...@@ -5344,8 +5344,8 @@ reconstruct_complex_type (tree type, tree bottom)
else else
return bottom; return bottom;
TREE_READONLY (outer) = TREE_READONLY (type); TYPE_READONLY (outer) = TYPE_READONLY (type);
TREE_THIS_VOLATILE (outer) = TREE_THIS_VOLATILE (type); TYPE_VOLATILE (outer) = TYPE_VOLATILE (type);
return outer; return outer;
} }
......
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