integrate.c (copy_decl_for_inlining): Copy TREE_READONLY and TREE_THIS_VOLATILE.
* integrate.c (copy_decl_for_inlining): Copy TREE_READONLY and TREE_THIS_VOLATILE. From-SVN: r33589
This commit is contained in:
parent
e803d3b218
commit
8eec72ec41
@ -1,3 +1,8 @@
|
||||
2000-05-01 Jason Merrill <jason@casey.cygnus.com>
|
||||
|
||||
* integrate.c (copy_decl_for_inlining): Copy TREE_READONLY and
|
||||
TREE_THIS_VOLATILE.
|
||||
|
||||
2000-05-01 Richard Henderson <rth@cygnus.com>
|
||||
|
||||
* ifcvt.c (noce_emit_cmove): Conditionally compile call to
|
||||
|
@ -333,6 +333,8 @@ copy_decl_for_inlining (decl, from_fn, to_fn)
|
||||
new PARM_DECL. */
|
||||
copy = build_decl (VAR_DECL, DECL_NAME (decl), TREE_TYPE (decl));
|
||||
TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (decl);
|
||||
TREE_READONLY (copy) = TREE_READONLY (decl);
|
||||
TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (decl);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user