blob: 89b59d4c7a8be629944bebf0407d514cbe53e135 [file] [log] [blame]
#include "libgccjit.h"
#include "harness.h"
void
create_code (gcc_jit_context *ctxt, void *user_data)
{
gcc_jit_context_get_builtin_function(ctxt, "__builtin_fork");
}
extern void
verify_code (gcc_jit_context *ctxt, gcc_jit_result *result)
{
CHECK_VALUE (result, NULL);
/* Verify that the correct error message was emitted. */
CHECK_STRING_VALUE (gcc_jit_context_get_first_error (ctxt),
"unimplemented primitive type for builtin"
" (type: BT_PID)");
}