This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Volatile MEMs in statement expressions and functions inlined as trees


Linus Torvalds <torvalds@transmeta.com> writes:

| On Fri, 7 Dec 2001, Jason Merrill wrote:
| >
| > It has nothing to do with assignment, except that the builtin assignment
| > operator returns a reference; any other situation involving references
| > works the same way.  Extracting a value from a reference involves a load.
| > To write it another way, the C++ expression
| >
| >   q = p = 0
| >
| > is equivalent to the C expression
| >
| >   q = *(p = 0, &p)
| >
| > Should that not load from p?
| 
| Ehh.. Take it one step further: according to you, the C++ expression
| 
| 	p = 0;
| 
| is equivalent to the C expression
| 
| 	*(p = 0, &p)

Absolutely not.  Please re-read what Jason said -- the result of the
assignment is an *lvalue*.  Thus

	p = 0;

is equivalent to

	(p = 0, &p);

-- Gaby
CodeSourcery, LLC                       http://www.codesourcery.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]