diff options
Diffstat (limited to 'gcc/read-rtl-function.c')
-rw-r--r-- | gcc/read-rtl-function.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/read-rtl-function.c b/gcc/read-rtl-function.c index a10d57f..ca580d3 100644 --- a/gcc/read-rtl-function.c +++ b/gcc/read-rtl-function.c @@ -1082,7 +1082,7 @@ function_reader::read_rtx_operand_r (rtx x) "orig:%i", ORIGINAL_REGNO (rtx). Consume it, we don't set ORIGINAL_REGNO, since we can get that from the 2nd copy later. */ - if (strncmp (desc, "orig:", 5) == 0) + if (startswith (desc, "orig:")) { expect_original_regno = true; desc_start += 5; |