2004-11-16 Mike Stump * dbxout.c (dbxout_source_file): Don't switch into the text section here when flag_reorder_blocks_and_partition is in effect, as that is done before we get here. Doing diffs in .: *** ./dbxout.c.~1~ Fri Nov 12 15:30:54 2004 --- ./dbxout.c Tue Nov 16 18:29:10 2004 *************** dbxout_source_file (const char *filename *** 1217,1223 **** if (filename && (lastfile == 0 || strcmp (filename, lastfile))) { /* Don't change section amid function. */ ! if (current_function_decl == NULL_TREE) text_section (); dbxout_begin_simple_stabs (filename, N_SOL); --- 1217,1224 ---- if (filename && (lastfile == 0 || strcmp (filename, lastfile))) { /* Don't change section amid function. */ ! if (current_function_decl == NULL_TREE ! && !flag_reorder_blocks_and_partition) text_section (); dbxout_begin_simple_stabs (filename, N_SOL); --------------