Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/common.cpp
213845 views
1
#include <stdio.h>
2
3
/// Defined so that tests can use code that logs errors.
4
extern "C" void __orc_rt_log_error(const char *ErrMsg) {
5
fprintf(stderr, "orc runtime error: %s\n", ErrMsg);
6
}
7
8