summaryrefslogtreecommitdiff
path: root/lang/egcs/files/patch-ai
diff options
context:
space:
mode:
authorVasil Dimov <vd@FreeBSD.org>2006-12-12 16:06:42 +0000
committerVasil Dimov <vd@FreeBSD.org>2006-12-12 16:06:42 +0000
commit37a9257fe9e8ce5a248fa0f403fe42340afa2556 (patch)
tree420ecd6da62b5bee338614d54acda8a25a59bc02 /lang/egcs/files/patch-ai
parentMake linux-aspell only depend on archivers/bzip2 for the FreeBSD versions (diff)
Remove expired ports:
2006-12-01 print/latex-beamer: is already included in the teTeX distribution 2006-12-01 print/latex-bibtopic: is already included in the teTeX distribution 2006-12-01 print/latex-bibunits: is already included in the teTeX distribution 2006-12-01 print/latex-booktabs: is already included in the teTeX distribution 2006-12-01 print/latex-index: is already included in the teTeX distribution 2006-12-01 print/latex-layouts: is already included in the teTeX distribution 2006-12-01 print/latex-pgf: is already included in the teTeX distribution 2006-12-01 print/latex-subfig: is already included in the teTeX distribution 2006-12-01 print/latex-xcolor: is already included in the teTeX distribution 2006-12-01 print/latex-lineno: is already included in the teTeX distribution 2006-12-01 print/latex-pict2e: is already included in the teTeX distribution 2007-05-31 multimedia/gstreamer-plugins-mpeg2enc80: Obsolete version, use gstreamer 0.10 instead 2006-12-01 lang/gcc30: "This port is no longer in use by anything in the ports collection and will be removed in the future. Use a later release instead." 2006-12-01 lang/egcs: "This port is no longer in use by anything in the ports collection and will be removed in the future. Use a later release of gcc instead" 2006-12-01 graphics/php4-ming: doesn't work with new version of ming library 2006-12-01 graphics/dvipng: is already included in the teTeX distribution
Notes
Notes: svn path=/head/; revision=179575
Diffstat (limited to 'lang/egcs/files/patch-ai')
-rw-r--r--lang/egcs/files/patch-ai45
1 files changed, 0 insertions, 45 deletions
diff --git a/lang/egcs/files/patch-ai b/lang/egcs/files/patch-ai
deleted file mode 100644
index f26858c55ca0..000000000000
--- a/lang/egcs/files/patch-ai
+++ /dev/null
@@ -1,45 +0,0 @@
---- gcc/final.c.orig Sat Sep 5 22:52:01 1998
-+++ gcc/final.c Wed Oct 7 17:06:58 1998
-@@ -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)