We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcbe91d commit a81a37fCopy full SHA for a81a37f
gcc/jit/libgccjit.cc
@@ -797,12 +797,13 @@ gcc_jit_context_new_field (gcc_jit_context *ctxt,
797
/* LOC can be NULL. */
798
RETURN_NULL_IF_FAIL (type, ctxt, loc, "NULL type");
799
RETURN_NULL_IF_FAIL (name, ctxt, loc, "NULL name");
800
- RETURN_NULL_IF_FAIL_PRINTF2 (
+ // TODO: check at playback if the size is known.
801
+ /*RETURN_NULL_IF_FAIL_PRINTF2 (
802
type->has_known_size (),
803
ctxt, loc,
804
"unknown size for field \"%s\" (type: %s)",
805
name,
- type->get_debug_string ());
806
+ type->get_debug_string ());*/
807
RETURN_NULL_IF_FAIL_PRINTF1 (
808
!type->is_void (),
809
0 commit comments