diff options
Diffstat (limited to 'gcc/read-rtl-function.c')
-rw-r--r-- | gcc/read-rtl-function.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/read-rtl-function.c b/gcc/read-rtl-function.c index 5699f57..81d7531 100644 --- a/gcc/read-rtl-function.c +++ b/gcc/read-rtl-function.c @@ -886,8 +886,9 @@ function_reader::read_rtx_operand (rtx x, int idx) if (idx == 7 && CALL_P (x)) { m_in_call_function_usage = true; - return rtx_reader::read_rtx_operand (x, idx); + rtx tem = rtx_reader::read_rtx_operand (x, idx); m_in_call_function_usage = false; + return tem; } else return rtx_reader::read_rtx_operand (x, idx); |