diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-22 00:26:03 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-22 00:26:03 +0000 |
commit | eb9d297d477510ae5d794e9d136c395362df1e18 (patch) | |
tree | 2ff7eb08105c0df70c8ebbd19873fcb13b68513d /gcc/loop.h | |
parent | 2d8fe5d004f9b3fb52ea63fc74aca6d70f1f5fa9 (diff) | |
download | gcc-eb9d297d477510ae5d794e9d136c395362df1e18.tar.gz |
* loop.h (LOOP_AUTO_UNROLL): Rename from LOOP_FIRST_PASS.
* loop.c (strength_reduce): Update.
* toplev.c (rest_of_compilation): Do unrolling in the first
loop pass, not the second.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55634 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/loop.h')
-rw-r--r-- | gcc/loop.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/loop.h b/gcc/loop.h index 631352fee6d..13b629311d4 100644 --- a/gcc/loop.h +++ b/gcc/loop.h @@ -28,7 +28,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #define LOOP_UNROLL 1 #define LOOP_BCT 2 #define LOOP_PREFETCH 4 -#define LOOP_FIRST_PASS 8 +#define LOOP_AUTO_UNROLL 8 /* Get the loop info pointer of a loop. */ #define LOOP_INFO(LOOP) ((struct loop_info *) (LOOP)->aux) |