diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2000-07-21 18:15:36 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2000-07-21 18:15:36 +0000 |
commit | 70f89778c0f2f76bc2f8046e99cc55f2962ac9c2 (patch) | |
tree | 14c35099cfb4f4257c5e0b8e589d530fcb829468 /lang/gcc35/files/patch-ai | |
parent | f667b39b3c0614d5aeb9bcb4bac4a4b222408185 (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_1_0'.release/4.1.0
Notes
Notes:
svn path=/head/; revision=30942
svn path=/tags/RELEASE_4_1_0/; revision=30943; tag=release/4.1.0
Diffstat (limited to 'lang/gcc35/files/patch-ai')
-rw-r--r-- | lang/gcc35/files/patch-ai | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/lang/gcc35/files/patch-ai b/lang/gcc35/files/patch-ai deleted file mode 100644 index 4395574d635a..000000000000 --- a/lang/gcc35/files/patch-ai +++ /dev/null @@ -1,54 +0,0 @@ ---- gcc/final.c.orig Sat Sep 5 22:52:01 1998 -+++ gcc/final.c Wed Oct 7 17:06:58 1998 -@@ -383,6 +383,8 @@ - /* zero word */ - assemble_integer (const0_rtx, long_bytes, 1); - -+ fprintf(asm_out_file,".stabs \"bbset\", 25, 0, 0, LPBX0\n"); -+ - /* address of filename */ - ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 1); - assemble_integer (gen_rtx_SYMBOL_REF (Pmode, name), pointer_bytes, 1); -@@ -1635,6 +1637,9 @@ - leaf_renumber_regs (first); - #endif - -+ if (profile_block_flag) -+ add_bb (file); -+ - /* The Sun386i and perhaps other machines don't work right - if the profiling code comes after the prologue. */ - #ifdef PROFILE_BEFORE_PROLOGUE -@@ -1696,7 +1701,9 @@ - profile_function (file) - FILE *file; - { -+#ifndef NO_PROFILE_DATA - int align = MIN (BIGGEST_ALIGNMENT, LONG_TYPE_SIZE); -+#endif /* not NO_PROFILE_DATA */ - #if defined(ASM_OUTPUT_REG_PUSH) - #if defined(STRUCT_VALUE_INCOMING_REGNUM) || defined(STRUCT_VALUE_REGNUM) - int sval = current_function_returns_struct; -@@ -1706,10 +1713,12 @@ - #endif - #endif /* ASM_OUTPUT_REG_PUSH */ - -+#ifndef NO_PROFILE_DATA - data_section (); - ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT)); - ASM_OUTPUT_INTERNAL_LABEL (file, "LP", profile_label_no); - assemble_integer (const0_rtx, LONG_TYPE_SIZE / BITS_PER_UNIT, 1); -+#endif /* not NO_PROFILE_DATA */ - - function_section (current_function_decl); - -@@ -1800,6 +1809,9 @@ - code to restore the stack frame and return to the caller. */ - FUNCTION_EPILOGUE (file, get_frame_size ()); - #endif -+ -+ if (profile_block_flag) -+ add_bb (file); - - #ifdef SDB_DEBUGGING_INFO - if (write_symbols == SDB_DEBUG) |