https://gcc.gnu.org/bugzilla/show_bug.cgi?id=126194
Alexandre Oliva <aoliva at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |aoliva at gcc dot gnu.org
--- Comment #16 from Alexandre Oliva <aoliva at gcc dot gnu.org> ---
Testing for argc > 0 is somewhat unfortunate, as some embedded runtimes set
argc to 0, and then the test fails. Could we make the test argc >= 0, or pass
the result of argc >= 0 to run_repro, or somesuch?