Commit 47d268d0 by Christian Bruel Committed by Christian Bruel
parent 8ad97cfc
2008-07-09 Christian Bruel <christian.bruel@st.com>
* final.c (get_attr_length_1): Call get_attr_length_1 with fallback_fn
instead of get_attr_length.
2008-07-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* genattrtab.c (insert_right_side, evaluate_eq_attr): Avoid C++
......
......@@ -410,7 +410,7 @@ get_attr_length_1 (rtx insn ATTRIBUTE_UNUSED,
length = asm_insn_count (body) * fallback_fn (insn);
else if (GET_CODE (body) == SEQUENCE)
for (i = 0; i < XVECLEN (body, 0); i++)
length += get_attr_length (XVECEXP (body, 0, i));
length += get_attr_length_1 (XVECEXP (body, 0, i), fallback_fn);
else
length = fallback_fn (insn);
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment