diff options
author | Jeff Law <law@gcc.gnu.org> | 1998-04-04 06:32:39 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-04-04 06:32:39 -0700 |
commit | e5e809f4194e578b5fbd48fc5a1df2377f28d197 (patch) | |
tree | 6743f11e58bd7a933b08900d973d89026cd11c43 /gcc/profile.c | |
parent | 31031eddacda46a500b2390f52cd4474bcaf84ca (diff) | |
download | gcc-e5e809f4194e578b5fbd48fc5a1df2377f28d197.zip gcc-e5e809f4194e578b5fbd48fc5a1df2377f28d197.tar.gz gcc-e5e809f4194e578b5fbd48fc5a1df2377f28d197.tar.bz2 |
* Check in merge from gcc2. See ChangeLog.11 and ChangeLog.12
for details.
* haifa-sched.c: Mirror recent changes from gcc2.
From-SVN: r18984
Diffstat (limited to 'gcc/profile.c')
-rw-r--r-- | gcc/profile.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/profile.c b/gcc/profile.c index bedeeae..bec6ca3 100644 --- a/gcc/profile.c +++ b/gcc/profile.c @@ -1,5 +1,5 @@ /* Calculate branch probabilities, and basic block execution counts. - Copyright (C) 1990, 91-94, 97, 1998 Free Software Foundation, Inc. + Copyright (C) 1990, 91-94, 96, 97, 1998 Free Software Foundation, Inc. Contributed by James E. Wilson, UC Berkeley/Cygnus Support; based on some ideas from Dain Samples of UC Berkeley. Further mangling by Bob Manson, Cygnus Support. @@ -618,7 +618,7 @@ branch_prob (f, dump_file) register int i; int fall_through = 0; struct adj_list *arcptr; - int dest = NULL_RTX; + int dest = 0; /* Block 0 always falls through to block 1. */ num_arcs = 0; @@ -1652,7 +1652,8 @@ output_func_start_profiler () /* Reset flag_inline_functions to its original value. */ flag_inline_functions = save_flag_inline_functions; - fflush (asm_out_file); + if (! quiet_flag) + fflush (asm_out_file); current_function_decl = NULL_TREE; assemble_constructor (IDENTIFIER_POINTER (DECL_NAME (fndecl))); |