Commit 7b18c3db by Richard Stallman

(reg_scan_mark_refs): XEXP (x, 0) in EXPR_LIST may be 0.

From-SVN: r5739
parent d01b0b7c
......@@ -1584,7 +1584,8 @@ reg_scan_mark_refs (x, insn, note_flag)
break;
case EXPR_LIST:
reg_scan_mark_refs (XEXP (x, 0), insn, note_flag);
if (XEXP (x, 0))
reg_scan_mark_refs (XEXP (x, 0), insn, note_flag);
if (XEXP (x, 1))
reg_scan_mark_refs (XEXP (x, 1), insn, note_flag);
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