On Sun, May 28, 2017 at 3:44 AM, Bernhard Voelker <[email protected]> wrote: >> goto force_outer_quoting_style; >> - FALLTHROUGH; >> + /* fall through */ >> c_escape: >> if (backslash_escapes) >> { > > Sorry, you lost me: > "c_escape:" /is/ a case statement, so what's the matter here?
Hi Bernie, That "c_escape:" is a goto label (not a case label), so putting the attribute before it would evoke a compilation error from newer gcc.
