diff options
author | Nathan Froyd <froydnj@codesourcery.com> | 2010-05-29 14:03:31 +0000 |
---|---|---|
committer | Nathan Froyd <froydnj@gcc.gnu.org> | 2010-05-29 14:03:31 +0000 |
commit | 25efe0608f22e455b6da57bbdbba46b624ac8569 (patch) | |
tree | 66258a8d6ddfef0c7613daac8284abdce1b85462 /gcc/basic-block.h | |
parent | 4cceafb849e1f8a341d4e1f67a6db1dcbec36452 (diff) | |
download | gcc-25efe0608f22e455b6da57bbdbba46b624ac8569.zip gcc-25efe0608f22e455b6da57bbdbba46b624ac8569.tar.gz gcc-25efe0608f22e455b6da57bbdbba46b624ac8569.tar.bz2 |
basic-block.h (struct control_flow_graph): Move last_label_uid field up.
* basic-block.h (struct control_flow_graph): Move last_label_uid field up.
* df.h (struct df_base_ref): Move regno field up.
* dwarf2out.c (struct dw_fde_struct): Move funcdef_number field down.
* expr.h (struct separate_ops): Move location field up.
* optabs.h (struct optab_d): Move libcall_basename field down.
* config/i386/i386.c (struct ix86_frame): Move red_zone_size up.
* config/i386/i386.h (struct machine_function): Convert call_abi field
into a bitfield. Move cfa field to the end of the structure.
From-SVN: r160025
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r-- | gcc/basic-block.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/basic-block.h b/gcc/basic-block.h index 7992f2a..95ad4a9 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -303,6 +303,9 @@ struct GTY(()) control_flow_graph { /* The first free basic block number. */ int x_last_basic_block; + /* UIDs for LABEL_DECLs. */ + int last_label_uid; + /* Mapping of labels to their associated blocks. At present only used for the gimple CFG. */ VEC(basic_block,gc) *x_label_to_block_map; @@ -318,9 +321,6 @@ struct GTY(()) control_flow_graph { /* Maximal number of entities in the single jumptable. Used to estimate final flowgraph size. */ int max_jumptable_ents; - - /* UIDs for LABEL_DECLs. */ - int last_label_uid; }; /* Defines for accessing the fields of the CFG structure for function FN. */ |