9 create_code (gcc_jit_context
*ctxt
, void *user_data
)
11 /* Let's try to inject the equivalent of:
17 i = "this is not an int";
20 and verify that the API complains about the mismatching types
23 gcc_jit_type
*void_type
=
24 gcc_jit_context_get_type (ctxt
, GCC_JIT_TYPE_VOID
);
25 gcc_jit_type
*int_type
=
26 gcc_jit_context_get_type (ctxt
, GCC_JIT_TYPE_INT
);
28 gcc_jit_function
*test_fn
=
29 gcc_jit_context_new_function (ctxt
, NULL
,
30 GCC_JIT_FUNCTION_EXPORTED
,
36 gcc_jit_function_new_local (
37 test_fn
, NULL
, int_type
, "i");
39 gcc_jit_block
*block
= gcc_jit_function_new_block (test_fn
, NULL
);
41 gcc_jit_block_add_assignment (
44 gcc_jit_context_new_string_literal (
45 ctxt
, "this is not an int"));
46 gcc_jit_block_end_with_void_return (block
, NULL
);
50 verify_code (gcc_jit_context
*ctxt
, gcc_jit_result
*result
)
52 CHECK_VALUE (result
, NULL
);
54 /* Verify that the correct error message was emitted. */
55 CHECK_STRING_VALUE (gcc_jit_context_get_first_error (ctxt
),
56 "gcc_jit_block_add_assignment:"
58 " assignment to i (type: int)"
59 " from \"this is not an int\" (type: const char *)");