brintos

brintos / llvm-project-archived public Read only

0
0
Text · 190 B · 9479cc8 Raw
7 lines · cpp
1#include <stdio.h>2 3/// Defined so that tests can use code that logs errors.4extern "C" void __orc_rt_log_error(const char *ErrMsg) {5  fprintf(stderr, "orc runtime error: %s\n", ErrMsg);6}7