9 create_code (gcc_jit_context
*ctxt
, void *user_data
)
11 /* Let's try to inject the equivalent of:
19 where "i" is a param that isn't associated with any function,
20 and verify that the API complains. */
22 gcc_jit_type
*int_type
=
23 gcc_jit_context_get_type (ctxt
, GCC_JIT_TYPE_INT
);
25 gcc_jit_param
*param
=
26 gcc_jit_context_new_param (ctxt
, NULL
, int_type
, "i");
28 gcc_jit_function
*test_fn
=
29 gcc_jit_context_new_function (ctxt
, NULL
,
30 GCC_JIT_FUNCTION_EXPORTED
,
36 gcc_jit_block
*block
= gcc_jit_function_new_block (test_fn
, NULL
);
37 /* "return i;", using param i from the wrong function. */
38 gcc_jit_block_end_with_return (block
,
40 gcc_jit_param_as_rvalue (param
));
44 verify_code (gcc_jit_context
*ctxt
, gcc_jit_result
*result
)
46 CHECK_VALUE (result
, NULL
);
48 /* Verify that the correct error message was emitted. */
49 CHECK_STRING_VALUE (gcc_jit_context_get_first_error (ctxt
),
50 ("gcc_jit_block_end_with_return:"
51 " param i (type: int)"
52 " was used within function test_fn"
53 " (in statement: return i;)"
54 " but is not associated with any function"))