Re: RFD: CSiBE failure: typeof sometimes copies toplevel const qualifiers

2006-01-05 Thread Joern RENNECKE
Richard Guenther wrote: This has been reported before and the kernel was fixed. typeof now always "returns" the effective type, including CV qualifiers in effect. Huh? Why would the effective type of __typeof__ (*(&uss->p)) x; be different from __typeof__ ((uss->p)) x; ? Moreover,

Re: RFD: CSiBE failure: typeof sometimes copies toplevel const qualifiers

2006-01-04 Thread Richard Guenther
On 1/4/06, Joern RENNECKE <[EMAIL PROTECTED]> wrote: > In order to investigate the CSiBE compilation time regressions observed > in December when my cross-jumping patches were installed, I set out to > compare the timings of current mainline with and without the patches > reinstated. However, unmod