This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: may be undefined operation warning
- From: "Diego Novillo" <dnovillo at google dot com>
- To: "Wesley Smith" <wesley dot hoke at gmail dot com>
- Cc: gcc-help at gcc dot gnu dot org
- Date: Sun, 24 Feb 2008 23:00:43 -0500
- Subject: Re: may be undefined operation warning
- References: <1079b050802241931j22861fbft74aca2b478d6d0d2@mail.gmail.com>
On Sun, Feb 24, 2008 at 22:31, Wesley Smith <wesley.hoke@gmail.com> wrote:
> c = out_pix + (voffset - *cp++)*out_rowstride;
> *c++ = MAX_CHAR(*c, accum); ///<------------- warning on this line
The first store to *c happens after the load on the RHS of the assignment.
Diego.