Commit 493692cd by Richard Stallman

(build_indirect_ref): TREE_THIS_VOLATILE no longer depends on flag_volatile.

From-SVN: r5374
parent 904f6798
......@@ -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;
}
}
......
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