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/dwarf2out.c | |
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/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index e9f11e8..b4c626b 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -305,8 +305,8 @@ typedef struct GTY(()) dw_fde_struct { const char *dw_fde_unlikely_section_end_label; dw_cfi_ref dw_fde_cfi; dw_cfi_ref dw_fde_switch_cfi; /* Last CFI before switching sections. */ - unsigned funcdef_number; HOST_WIDE_INT stack_realignment; + unsigned funcdef_number; /* Dynamic realign argument pointer register. */ unsigned int drap_reg; /* Virtual dynamic realign argument pointer register. */ |