aboutsummaryrefslogtreecommitdiff
path: root/gcc/libgcc2.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2002-05-10 17:32:01 -0700
committerRichard Henderson <rth@gcc.gnu.org>2002-05-10 17:32:01 -0700
commit2292e8fc45a6908895fe5a14566879e600f8a42b (patch)
tree2cb1f64448644304b80597457c575f4d16bb0144 /gcc/libgcc2.c
parentdbfb1116b34897645d29db19c7557348cd69d21b (diff)
downloadgcc-2292e8fc45a6908895fe5a14566879e600f8a42b.zip
gcc-2292e8fc45a6908895fe5a14566879e600f8a42b.tar.gz
gcc-2292e8fc45a6908895fe5a14566879e600f8a42b.tar.bz2
final.c (end_final): Tidy whitespace.
* 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". From-SVN: r53374
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 6c004a5..80710e2 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;
};