public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* Prohibit use of break/continue in a statement
@ 2022-01-31 15:54 Hirrolot
  2022-01-31 16:50 ` David Brown
  0 siblings, 1 reply; 6+ messages in thread
From: Hirrolot @ 2022-01-31 15:54 UTC (permalink / raw)
  To: gcc-help

I have a macro that expands to a for-loop. It is used as follows:

    MACRO(...) {
        // User code
    }

The for-loop is used to open a new scope with a new variable; thus,
`MACRO(...) { ... }` would be a proper C statement. The loop itself is
executed only once.

The problem is that if a user uses `break` or `continue` like this:

    while (i < 10) {
        MACRO(...) {
           break;
            // User code...
       }
    }

Then that `break` will apply to the for-loop generated by `MACRO`, not
to the outer while-loop. The same holds for `continue`. This is
unexpected behaviour, and I would like to prohibit the use of the
`break`/`continue` statements in a user statement placed after
`MACRO`. Ideally, this should somehow trigger a compilation
error/warning.

It should be clarified that `MACRO` is not of a loop itself: it is not
a for-each macro or something like this; using that for-loop is just
an implementation detail. I would be also happy with getting rid of
that for-loop but I have no idea how. If I just generate a variable
like this:

    #define MACRO(...) int x; /* Some other stuff */

Then `MACRO(...) { ... }` will no longer be a single C statement.
Moreover, two occurrences of `MACRO` calls in a single scope will
result in a compilation error, which is also quite unfortunate.

Is it possible to trigger a compilation warning/error for
`break`/`continue` with GCC?

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-02-01  8:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-31 15:54 Prohibit use of break/continue in a statement Hirrolot
2022-01-31 16:50 ` David Brown
     [not found]   ` <CA+g-_moR9HXz3rLH6WEeAEq1DXHhyAS9-8DxwLdvNNXzAUGJCg@mail.gmail.com>
2022-01-31 17:00     ` Fwd: " Hirrolot
2022-01-31 17:11       ` Al K
2022-01-31 18:44         ` Hirrolot
2022-02-01  8:53           ` Al K

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).