diff options
author | Devang Patel <dpatel@gcc.gnu.org> | 2003-06-27 10:26:25 -0700 |
---|---|---|
committer | Devang Patel <dpatel@gcc.gnu.org> | 2003-06-27 10:26:25 -0700 |
commit | 3006aa689d554fe346cf500faf4944075c0d057e (patch) | |
tree | 89dcda259ab3e9ba0791984adb07894ea1db4562 | |
parent | 2e8a523fa738332c2a5f2c37d3dce449266d21ff (diff) | |
download | gcc-3006aa689d554fe346cf500faf4944075c0d057e.zip gcc-3006aa689d554fe346cf500faf4944075c0d057e.tar.gz gcc-3006aa689d554fe346cf500faf4944075c0d057e.tar.bz2 |
Remove extra bits from my previous commit.
I am sorry for the way I handled this -gused commit.
From-SVN: r68587
-rw-r--r-- | gcc/toplev.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index c58404a..3c85676 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -4590,20 +4590,6 @@ general_init (char *argv0) init_stringpool (); init_ttree (); - /* APPLE LOCAL setrlimit */ -#ifdef RLIMIT_STACK - /* Get rid of any avoidable limit on stack size. */ - { - struct rlimit rlim; - - /* Set the stack limit huge. (Compiles normally work within - a megabyte of stack, but the normal limit on OSX is 512K for - some reason.) */ - getrlimit (RLIMIT_STACK, &rlim); - rlim.rlim_cur = rlim.rlim_max; - setrlimit (RLIMIT_STACK, &rlim); - } -#endif /* RLIMIT_STACK defined */ } /* Parse command line options and set default flag values, called |