aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>1999-07-02 19:26:45 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>1999-07-02 19:26:45 +0000
commit14ffedf1b0799bc799fd4c0d19560bbf9ddd7e8f (patch)
tree1da9f16664949d56feb05aa39e30846fc0f985b5 /contrib
parent5bfda2db35dbe69f634735026f3f469466540039 (diff)
downloadsrc-14ffedf1b0799bc799fd4c0d19560bbf9ddd7e8f.tar.gz
src-14ffedf1b0799bc799fd4c0d19560bbf9ddd7e8f.zip
* The OBSTACK_CHUNK_SIZE #define was in the "Code generation parameters"
section rather than the "Miscellaneous parameters" where it belongs. * Clarify what we are locating using the -m rule. Submitted by: bde
Notes
Notes: svn path=/head/; revision=48475
Diffstat (limited to 'contrib')
-rw-r--r--contrib/gcc/config/freebsd.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/gcc/config/freebsd.h b/contrib/gcc/config/freebsd.h
index cf4d4816da15..f23d6a398ac4 100644
--- a/contrib/gcc/config/freebsd.h
+++ b/contrib/gcc/config/freebsd.h
@@ -57,7 +57,7 @@ Boston, MA 02111-1307, USA. */
#undef LIB_SPEC
#define LIB_SPEC "%{!shared:%{!pg:%{!pthread:%{!kthread:-lc}%{kthread:-lpthread -lc}}%{pthread:-lc_r}}%{pg:%{!pthread:%{!kthread:-lc_p}%{kthread:-lpthread_p -lc_p}}%{pthread:-lc_r_p}}}"
-/* Let gcc locate this for us according to the -m rules. */
+/* Tell gcc to locate libgcc.a for us according to the -m rules. */
#undef LIBGCC_SPEC
#define LIBGCC_SPEC \
"%{!shared:%{!pthread:%{!kthread:libgcc.a%s}}%{pthread|kthread:libgcc_r.a%s}}"
@@ -66,7 +66,7 @@ Boston, MA 02111-1307, USA. */
/* Code generation parameters. */
/* Don't default to pcc-struct-return, because gcc is the only compiler, and
- we want to retain compatibility with older gcc versions
+ we want to retain compatibility with older gcc versions
(even though the svr4 ABI for the i386 says that records and unions are
returned in memory). */
#undef DEFAULT_PCC_STRUCT_RETURN
@@ -82,12 +82,12 @@ Boston, MA 02111-1307, USA. */
#undef DEFAULT_VTABLE_THUNKS
#define DEFAULT_VTABLE_THUNKS 1
-/* Our malloc can allocte pagesized blocks efficiently. The default size
- of 4072 bytes is not optimal on the i386 nor the Alpha. */
-#define OBSTACK_CHUNK_SIZE (getpagesize())
-
/* Miscellaneous parameters. */
/* Tell libgcc2.c that FreeBSD targets support atexit(3). */
#define HAVE_ATEXIT
+
+/* Our malloc can allocte pagesized blocks efficiently. The default size
+ of 4072 bytes is not optimal on the i386 nor the Alpha. */
+#define OBSTACK_CHUNK_SIZE (getpagesize())