summaryrefslogtreecommitdiff
path: root/gcc/libgcc2.c
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-11 00:32:01 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-11 00:32:01 +0000
commit6b6672beb27be6029d40983fee5425c8f545b88c (patch)
tree2cb1f64448644304b80597457c575f4d16bb0144 /gcc/libgcc2.c
parent843dd7a3db214e25bf208900bff2936f525a4cda (diff)
downloadgcc-6b6672beb27be6029d40983fee5425c8f545b88c.tar.gz
* final.c (end_final): Tidy whitespace. Don't honor flag_pack_struct.
Convert integers constants as needed. Replace "nwords" field with "sizeof_bb". (final): Save profile data if cfun->arc_profile, not profile_arc_flag. * function.h: Fix typo in comment. * libgcc2.c (struct bb): Replace "nwords" with "sizeof_bb". git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53374 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/libgcc2.c')
-rw-r--r--gcc/libgcc2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c
index 6c004a59a3b..80710e2623a 100644
--- a/gcc/libgcc2.c
+++ b/gcc/libgcc2.c
@@ -1254,7 +1254,7 @@ struct bb
struct bb *next;
/* Older GCC's did not emit these fields. */
- long nwords;
+ long sizeof_bb;
struct bb_function_info *function_infos;
};