diff options
author | Maxim Kuvyrkov <mkuvyrkov@ispras.ru> | 2006-03-28 17:33:41 +0000 |
---|---|---|
committer | Maxim Kuvyrkov <mkuvyrkov@gcc.gnu.org> | 2006-03-28 17:33:41 +0000 |
commit | 3cc82eea2bfea5681e8374a85794102b68bdd4be (patch) | |
tree | a1d6247fcff33a23c3d09e0f5da5f44d6739551d /gcc/sched-int.h | |
parent | e8206491f015e63752c9db55d1b887a69d45b6af (diff) | |
download | gcc-3cc82eea2bfea5681e8374a85794102b68bdd4be.zip gcc-3cc82eea2bfea5681e8374a85794102b68bdd4be.tar.gz gcc-3cc82eea2bfea5681e8374a85794102b68bdd4be.tar.bz2 |
2006-03-28 Maxim Kuvyrkov <mkuvyrkov@ispras.ru>
Revert my 2006-03-27 patches.
From-SVN: r112456
Diffstat (limited to 'gcc/sched-int.h')
-rw-r--r-- | gcc/sched-int.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/sched-int.h b/gcc/sched-int.h index cc9812a..175bd69 100644 --- a/gcc/sched-int.h +++ b/gcc/sched-int.h @@ -1,7 +1,7 @@ /* Instruction scheduling pass. This file contains definitions used internally in the scheduler. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, - 1999, 2000, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. + 1999, 2000, 2001, 2003, 2004 Free Software Foundation, Inc. This file is part of GCC. @@ -36,8 +36,8 @@ extern state_t curr_state; /* Forward declaration. */ struct ready_list; -/* Type to represent status of a dependence. */ -typedef int ds_t; +/* Type to represent status of a dependence. A convinient short alias. */ +typedef HOST_WIDE_INT ds_t; /* Type to represent weakness of speculative dependence. */ typedef int dw_t; @@ -377,10 +377,10 @@ extern regset *glat_start, *glat_end; for using to describe instruction's status. It is set whenever instuction has at least one dependence, that cannot be overcome. See also: check_dep_status () in sched-deps.c . */ -#define DEP_STATUS(LINK) XINT (LINK, 2) +#define DEP_STATUS(LINK) XWINT (LINK, 2) /* We exclude sign bit. */ -#define BITS_PER_DEP_STATUS (HOST_BITS_PER_INT - 1) +#define BITS_PER_DEP_STATUS (HOST_BITS_PER_WIDE_INT - 1) /* First '4' stands for 3 dep type bits and HARD_DEP bit. Second '4' stands for BEGIN_{DATA, CONTROL}, BE_IN_{DATA, CONTROL} |