Sign in
llvm
/
llvm-project
/
8fcb1263f42657ecbc355beff12500dfbcddee17
/
.
/
compiler-rt
/
lib
/
orc
/
tests
/
unit
/
common.cpp
blob: 9479cc809430856dba02333b7d32691b79943993 [
file
] [
log
] [
blame
]
#include
<stdio.h>
/// Defined so that tests can use code that logs errors.
extern
"C"
void
__orc_rt_log_error
(
const
char
*
ErrMsg
)
{
fprintf
(
stderr
,
"orc runtime error: %s\n"
,
ErrMsg
);
}