Re: volatile markings to silence compilers - Mailing list pgsql-hackers

From Tom Lane
Subject Re: volatile markings to silence compilers
Date
Msg-id 12482.1300373777@sss.pgh.pa.us
Whole thread Raw
In response to Re: volatile markings to silence compilers  (Martijn van Oosterhout <kleptog@svana.org>)
List pgsql-hackers
Martijn van Oosterhout <kleptog@svana.org> writes:
> It appears the issue is mostly that the compiler is unable to prove
> that the variables aren't changed.

IME, older versions of gcc will warn about any variable that's assigned
more than once, even if those assignments are before the setjmp call.
Presumably this is stricter than necessary, but I don't know enough
details of gcc's register usage to be sure.

> My point is, are we hopeful this problem will ever go away?

Since we're trying to silence the warning in existing and even obsolete
compilers, whether it gets improved in future compilers is not terribly
relevant.
        regards, tom lane


pgsql-hackers by date:

Previous
From: "Kevin Grittner"
Date:
Subject: Re: Rectifying wrong Date outputs
Next
From: hom
Date:
Subject: I am confused after reading codes of PostgreSQL three week