mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-23 02:44:18 +08:00
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
2d20f69092
commit
737b8f3835
@ -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…
Reference in New Issue
Block a user