(build_indirect_ref): TREE_THIS_VOLATILE no longer depends on flag_volatile.

From-SVN: r5374
This commit is contained in:
Richard Stallman 1993-09-20 21:23:53 +00:00
parent 904f679868
commit 493692cdb5
1 changed files with 1 additions and 1 deletions

View File

@ -1225,7 +1225,7 @@ build_indirect_ref (ptr, errorstring)
TREE_READONLY (ref) = TYPE_READONLY (t);
TREE_SIDE_EFFECTS (ref)
= TYPE_VOLATILE (t) || TREE_SIDE_EFFECTS (pointer) || flag_volatile;
TREE_THIS_VOLATILE (ref) = TYPE_VOLATILE (t) || flag_volatile;
TREE_THIS_VOLATILE (ref) = TYPE_VOLATILE (t);
return ref;
}
}