gensupport: drop suppport for define_cond_exec from compact syntac

define_cond_exec does not support the special @@ syntax
and so can't support {@.  As such just remove support
for it.

gcc/ChangeLog:

	PR bootstrap/110324
	* gensupport.cc (convert_syntax): Explicitly check for RTX code.
This commit is contained in:
Tamar Christina 2023-06-20 23:31:40 +01:00 committed by Andrew Stubbs
parent 2d20f69092
commit 737b8f3835

View File

@ -878,7 +878,8 @@ convert_syntax (rtx x, file_location loc)
const char *templ;
vec_conlist tconvec, convec, attrvec;
templ_index = GET_CODE (x) == DEFINE_INSN ? 3 : 2;
templ_index = 3;
gcc_assert (GET_CODE (x) == DEFINE_INSN);
templ = XTMPL (x, templ_index);
@ -1053,7 +1054,6 @@ process_rtx (rtx desc, file_location loc)
break;
case DEFINE_COND_EXEC:
convert_syntax (desc, loc);
queue_pattern (desc, &define_cond_exec_tail, loc);
break;