https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61593

Eric Gallager <egallager at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |easyhack

--- Comment #5 from Eric Gallager <egallager at gcc dot gnu.org> ---
It should be pretty easy; in config/darwin.h #pragma mark is registered as part
of the DARWIN_REGISTER_TARGET_PRAGMAS() macro like this:

if (!flag_preprocess_only)                                      \
      cpp_register_pragma (parse_in, NULL, "mark",              \
                           darwin_pragma_ignore, false);

...and then darwin_pragma_ignore() is a simple no-op declared in
config/darwin-protos.h and defined in config/darwin-c.c. So I guess it'd just
have to be re-titled and moved somewhere generic?

Reply via email to