On Fri, Mar 20, 2015 at 11:02:59AM -0400, Jason Merrill wrote: > On 03/20/2015 10:59 AM, Jakub Jelinek wrote: > >On Fri, Mar 20, 2015 at 10:53:50AM -0400, Jason Merrill wrote: > >>On 03/19/2015 02:05 PM, Jakub Jelinek wrote: > >>>Though, a question is if we do (or, if we don't and should) reject say > >>>constexpr char s[] = "abc"; > >>>constexpr int j = 4; > >>>constexpr char c = *(&s[j] - 2); > >>>because there was out of bound access in there. > >> > >>I don't see an out-of-bound access in this example; taking the address of > >>one-past-the-end is OK as long as you don't try to access through it. > > > >It is taking address of two past the end though - &s[3] is fine, sure. > >But &s[4] is invalid already. > > &s[3] is the address of the terminal \0.
Yeah, sure. But the above testcase does &s[4], which is out of bounds arithmetics, and then subtracts 2 to point it back into range. I'm not saying it is absolutely necessary to handle this for GCC 5, but we at least should not treat the POINTER_PLUS_EXPR offset in the constexpr handling as unsigned, but think of it as signed, otherwise we reject even valid code - say constexpr char d = *(&s[3] - 1). Jakub