From ed48843c9a5cbb98af859cd8673f8de4b4d86d1c Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Sun, 21 Sep 2008 17:42:05 +0000 Subject: [PATCH] introduce a IR_SEGMENT_FIRST [r22145] --- include/libfirm/irprog.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/libfirm/irprog.h b/include/libfirm/irprog.h index 01aefdbbc..8d5347894 100644 --- a/include/libfirm/irprog.h +++ b/include/libfirm/irprog.h @@ -47,8 +47,9 @@ #include "irgraph.h" typedef enum ir_segment_t { + IR_SEGMENT_FIRST, /** "normal" global data */ - IR_SEGMENT_GLOBAL, + IR_SEGMENT_GLOBAL = IR_SEGMENT_FIRST, /** thread local storage segment */ IR_SEGMENT_THREAD_LOCAL, /** -- 2.20.1