Skip to content
Snippets Groups Projects
Commit 8c56241c authored by Chris Dearman's avatar Chris Dearman
Browse files

Declare do_str() function before the implementation

This ensures that GCC does not discard the do_str implementation in
some cases eg when compiling tests with debug enabled:
  make RUN_TESTS=1 DEBUG=1
parent bad2df3e
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,7 @@
#include "tinytest.h"
#include "tinytest_macros.h"
void do_str(const char *src);
inline void do_str(const char *src) {
mp_lexer_t *lex = mp_lexer_new_from_str_len(MP_QSTR__lt_stdin_gt_, src, strlen(src), 0);
if (lex == NULL) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment