diff options
Diffstat (limited to 'gcc/read-rtl.c')
-rw-r--r-- | gcc/read-rtl.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/read-rtl.c b/gcc/read-rtl.c index 11e2686..9254028 100644 --- a/gcc/read-rtl.c +++ b/gcc/read-rtl.c @@ -1658,6 +1658,15 @@ rtx_reader::read_rtx_code (const char *code_name) return_rtx = rtx_alloc (code); memset (return_rtx, 0, RTX_CODE_SIZE (code)); PUT_CODE (return_rtx, code); + c = read_skip_spaces (); + if (c == ':') + { + file_location loc = read_name (&name); + record_potential_iterator_use (&modes, loc, return_rtx, 0, + name.string); + } + else + unread_char (c); return return_rtx; } |