diff options
author | Richard Guenther <rguenther@suse.de> | 2009-03-23 16:29:33 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2009-03-23 16:29:33 +0000 |
commit | 3691626c344d5f04b933ef6c70f0c0fb58d25151 (patch) | |
tree | a53e7634a67bdd62e10ed93275097fbd631441ef /gcc/function.h | |
parent | 88ccb72ad199fe41a52bd85e9adad1ae17544db1 (diff) | |
download | gcc-3691626c344d5f04b933ef6c70f0c0fb58d25151.zip gcc-3691626c344d5f04b933ef6c70f0c0fb58d25151.tar.gz gcc-3691626c344d5f04b933ef6c70f0c0fb58d25151.tar.bz2 |
cgraph.h (struct cgraph_node): Reorder fields for 64-bit hosts.
2009-03-23 Richard Guenther <rguenther@suse.de>
* cgraph.h (struct cgraph_node): Reorder fields for 64-bit hosts.
* tree.h (struct tree_type): Likewise.
* reload.h (struct insn_chain): Likewise.
* dwarf2out.c (struct dw_loc_descr_struct): Likewise.
* function.h (struct function): Likewise.
* tree-ssa-structalias.c (struct equiv_class_label): Likewise.
From-SVN: r145009
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/function.h b/gcc/function.h index f9bdda8..31d223a 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -501,9 +501,6 @@ struct function GTY(()) pointer. */ tree nonlocal_goto_save_area; - /* Function sequence number for profiling, debugging, etc. */ - int funcdef_no; - /* List of function local variables, functions, types and constants. */ tree local_decls; @@ -521,6 +518,9 @@ struct function GTY(()) /* Last statement uid. */ int last_stmt_uid; + /* Function sequence number for profiling, debugging, etc. */ + int funcdef_no; + /* Line number of the start of the function for debugging purposes. */ location_t function_start_locus; |