PR rtl-optimization/16968
* loop.c (scan_loop): Stop scanning the loop for movable
insns as soon as an optimization barrier is encountered.
From-SVN: r92350
+2004-12-18 Eric Botcazou <ebotcazou@libertysurf.fr>
+
+ PR rtl-optimization/16968
+ * loop.c (scan_loop): Stop scanning the loop for movable
+ insns as soon as an optimization barrier is encountered.
+
2004-12-16 H.J. Lu <hongjiu.lu@intel.com>
PR other/18508
in_libcall--;
if (GET_CODE (p) == INSN)
{
+ /* Do not scan past an optimization barrier. */
+ if (GET_CODE (PATTERN (p)) == ASM_INPUT)
+ break;
temp = find_reg_note (p, REG_LIBCALL, NULL_RTX);
if (temp)
in_libcall++;
+2004-12-18 Jakub Jelinek <jakub@redhat.com>
+
+ * gcc.c-torture/execute/20041218-1.c: New test.
+
2004-12-17 Nathan Sidwell <nathan@codesourcery.com>
PR c++/18975