xref: /llvm-project/compiler-rt/lib/orc/tests/unit/common.cpp (revision f6c51ea84ac914454142ee76f317c5f66a088434)
1*f6c51ea8SLang Hames #include <stdio.h>
2*f6c51ea8SLang Hames 
3*f6c51ea8SLang Hames /// Defined so that tests can use code that logs errors.
4*f6c51ea8SLang Hames extern "C" void __orc_rt_log_error(const char *ErrMsg) {
5*f6c51ea8SLang Hames   fprintf(stderr, "orc runtime error: %s\n", ErrMsg);
6*f6c51ea8SLang Hames }
7