Commit 7839a79c by Ulrich Weigand Committed by Ulrich Weigand

* config/arm/arm.c (arm_reorg): Ensure all insns are split.

From-SVN: r189790
parent 7a49d85e
2012-07-23 Ulrich Weigand <ulrich.weigand@linaro.org>
* config/arm/arm.c (arm_reorg): Ensure all insns are split.
2012-07-23 Uros Bizjak <ubizjak@gmail.com>
PR target/53961
......
......@@ -13415,6 +13415,13 @@ arm_reorg (void)
if (TARGET_THUMB2)
thumb2_reorg ();
/* Ensure all insns that must be split have been split at this point.
Otherwise, the pool placement code below may compute incorrect
insn lengths. Note that when optimizing, all insns have already
been split at this point. */
if (!optimize)
split_all_insns_noflow ();
minipool_fix_head = minipool_fix_tail = NULL;
/* The first insn must always be a note, or the code below won't
......
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