Commit 2292e8fc by Richard Henderson Committed by Richard Henderson

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
parent dbfb1116
2002-05-10 Richard Henderson <rth@redhat.com>
* 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".
2002-05-10 Roger Sayle <roger@eyesopen.com>
* fold-const.c (build_range_check): Optimize (c>=1) && (c<=127)
......
......@@ -437,7 +437,7 @@ struct function
generated. */
unsigned int instrument_entry_exit : 1;
/* Nonzero if no profiling should be done for the function. */
/* Nonzero if arc profiling should be done for the function. */
unsigned int arc_profile : 1;
/* Nonzero if profiling code should be generated. */
......
......@@ -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;
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment