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:
parent
4f3be7cbeb
commit
f5d0cec170
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue