aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.h
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2009-03-23 16:29:33 +0000
committerRichard Guenther <rguenther@suse.de>2009-03-23 16:29:33 +0000
commit47863663eca5fd9a2a9a3fe9c1c0d2c463883342 (patch)
treea53e7634a67bdd62e10ed93275097fbd631441ef /gcc/function.h
parent61680219fae2ab87cdeecd0587b796d3418b7dd9 (diff)
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. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@145009 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.h')
-rw-r--r--gcc/function.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/function.h b/gcc/function.h
index f9bdda8594d..31d223a3d39 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;