diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/grt/config/win32.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/grt/config/win32.c b/src/grt/config/win32.c index 677943c4a..a90a2891d 100644 --- a/src/grt/config/win32.c +++ b/src/grt/config/win32.c @@ -198,6 +198,14 @@ __ghdl_run_through_longjump (int (*func)(void)) void grt_save_backtrace (struct backtrace_addrs *bt, int skip) { + /* FIXME + testsuite/gna/issue635 fails on GitHub Actions when executed with + LLVM backend on MINGW64 (MSYS2). GHDL returns '3', instead of '0'. + This dummy printf fixes it, surprisingly. + See https://github.com/ghdl/ghdl/pull/1516 + */ + printf(""); + CONTEXT ctxt; RtlCaptureContext (&ctxt); |