summaryrefslogtreecommitdiff
path: root/gcc/sched-int.h
diff options
context:
space:
mode:
authormkuvyrkov <mkuvyrkov@138bc75d-0d04-0410-961f-82ee72b054a4>2006-03-28 17:33:41 +0000
committermkuvyrkov <mkuvyrkov@138bc75d-0d04-0410-961f-82ee72b054a4>2006-03-28 17:33:41 +0000
commitb2814640b77ff0aa10d5060e03dffd141891e70f (patch)
treea1d6247fcff33a23c3d09e0f5da5f44d6739551d /gcc/sched-int.h
parentc348f27f02731704ee3e33e5d541060f865a75b7 (diff)
downloadgcc-b2814640b77ff0aa10d5060e03dffd141891e70f.tar.gz
2006-03-28 Maxim Kuvyrkov <mkuvyrkov@ispras.ru>
Revert my 2006-03-27 patches. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@112456 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sched-int.h')
-rw-r--r--gcc/sched-int.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/sched-int.h b/gcc/sched-int.h
index cc9812ad20f..175bd69dd5a 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}