diff options
author | YamaArashi <shadow962@live.com> | 2016-04-30 04:57:33 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-04-30 04:57:33 -0700 |
commit | d1cb3194bb20a44eecafe4186cf4e368f2a4d5b8 (patch) | |
tree | d0f27aa47b8f124d7e92b2e2747cc8c05da676b0 /gcc/loop.c | |
parent | 0dfd357a5116b3d76fbaa9bcdd16902c28f60d2b (diff) |
build libgcc with older version of compiler and add install script
Diffstat (limited to 'gcc/loop.c')
-rwxr-xr-x | gcc/loop.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -7634,8 +7634,12 @@ check_dbra_loop (loop_end, insn_count, loop_start, loop_info) } } } +#ifndef OLD_COMPILER else if (GET_CODE (bl->biv->add_val) == CONST_INT && INTVAL (bl->biv->add_val) > 0) +#else + else if (INTVAL (bl->biv->add_val) > 0) +#endif { /* Try to change inc to dec, so can apply above optimization. */ /* Can do this if: |