From 0887d4a59b29ff9c398d2961dce95977fd7efe9c Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Wed, 7 May 2008 23:19:08 +0000 Subject: [PATCH] reordered struct for smaller memory print on 64bit [r19561] --- ir/ana/irloop_t.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ir/ana/irloop_t.h b/ir/ana/irloop_t.h index aa222d32c..81828ca57 100644 --- a/ir/ana/irloop_t.h +++ b/ir/ana/irloop_t.h @@ -64,13 +64,12 @@ typedef enum loop_flags { */ struct ir_loop { firm_kind kind; /**< A type tag, set to k_ir_loop. */ - - struct ir_loop *outer_loop; /**< The outer loop */ - loop_element *children; /**< Mixed flexible array: Contains sons and loop_nodes */ int depth; /**< Nesting depth */ int n_sons; /**< Number of ir_nodes in array "children" */ int n_nodes; /**< Number of loop_nodes in array "children" */ unsigned flags; /**< a set of loop_flags_t */ + struct ir_loop *outer_loop; /**< The outer loop */ + loop_element *children; /**< Mixed flexible array: Contains sons and loop_nodes */ tarval *loop_iter_start; /**< counting loop: the start value */ tarval *loop_iter_end; /**< counting loop: the last value reached */ tarval *loop_iter_increment; /**< counting loop: the increment */ -- 2.20.1