We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb569bc commit fb37284Copy full SHA for fb37284
gcc/jit/libgccjit.cc
@@ -783,12 +783,13 @@ gcc_jit_context_new_field (gcc_jit_context *ctxt,
783
/* LOC can be NULL. */
784
RETURN_NULL_IF_FAIL (type, ctxt, loc, "NULL type");
785
RETURN_NULL_IF_FAIL (name, ctxt, loc, "NULL name");
786
- RETURN_NULL_IF_FAIL_PRINTF2 (
+ // TODO: check at playback if the size is known.
787
+ /*RETURN_NULL_IF_FAIL_PRINTF2 (
788
type->has_known_size (),
789
ctxt, loc,
790
"unknown size for field \"%s\" (type: %s)",
791
name,
- type->get_debug_string ());
792
+ type->get_debug_string ());*/
793
RETURN_NULL_IF_FAIL_PRINTF1 (
794
!type->is_void (),
795
0 commit comments