Commit 9d821fa5 by Kyrylo Tkachov Committed by Kyrylo Tkachov

re PR target/56809 (Revision 197266 causes trunk ICE for arm-none-eabi targets)

2013-04-03  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>

	PR target/56809
	* config/aarch64/aarch64.c (is_jump_table): Use next_active_insn
	instead of next_real_insn.

From-SVN: r197434
parent c42a832a
2013-04-03 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
PR target/56809
* config/aarch64/aarch64.c (is_jump_table): Use next_active_insn
instead of next_real_insn.
2013-04-03 Marek Polacek <polacek@redhat.com>
PR sanitizer/55702
......
......@@ -4070,7 +4070,7 @@ aarch64_output_casesi (rtx *operands)
{
char buf[100];
char label[100];
rtx diff_vec = PATTERN (next_real_insn (operands[2]));
rtx diff_vec = PATTERN (next_active_insn (operands[2]));
int index;
static const char *const patterns[4][2] =
{
......
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