|
From: Doug R. <df...@nl...> - 2004-03-05 14:35:38
|
On Thu, 2004-03-04 at 23:52, George Staikos wrote:
> On Thursday 04 March 2004 18:13, George Staikos wrote:
> > > - /* Ignore zero-sized scopes */
> > > - if (this == next) {
> > > + /* Ignore zero-sized or negative scopes */
> > > + if (size <= 0) {
> >
> > This is exactly the first thing I tried, and then I got more errors after
> > that, so I assumed it was more complex. I'm going to try the latest
> > snapshot of PPC valgrind and if this fix is not included, I'll add it in
> > again. However the log looked worse last time. :-) I'll post the new
> > results when I get them.
>
> As a followup, with the latest PPC patch and this patch applied, things work
> better, but are still quite broken. The simple 'cout << "Hello world"' app
> now works fine (no errors reported), but with the Qt examples/hello demo I
> get 30000:
> ==26698== Conditional jump or move depends on uninitialised value(s)
>
> At startup I also see:
>
> @@ expected ';' at type attrib (ptr="(99,1),(8,12)")
> @@ unlikely looking definition in unparsed remains "(0,219)=@(99,1),(8,12)"
>
> I saw this yesterday when I tried the size <= 0 patch too.
I've definately fixed this one - this is debug information for the C++
'member function pointer' type.
|