From 8d5d7fe4eddf671d31877f12d0501651f0104470 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christian=20W=C3=BCrdig?= Date: Fri, 18 Aug 2006 12:54:48 +0000 Subject: [PATCH] is_scheduled flag is now unsigned --- ir/be/besched_t.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/be/besched_t.h b/ir/be/besched_t.h index 86c798556..144b7d316 100644 --- a/ir/be/besched_t.h +++ b/ir/be/besched_t.h @@ -25,7 +25,7 @@ typedef struct _sched_info_t { struct list_head list; /**< The list head to list the nodes in a schedule. */ sched_timestep_t time_step; /**< If a is after b in a schedule, its time step is larger than b's. */ - int scheduled : 1; /**< 1, if the node is in the schedule of the block, 0 else. */ + unsigned scheduled : 1; /**< 1, if the node is in the schedule of the block, 0 else. */ } sched_info_t; #define _sched_entry(list_head) (list_entry(list_head, sched_info_t, list)) -- 2.20.1