History log of /freebsd-10-stable/contrib/gcc/doc/
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
286713 13-Aug-2015 pfg

MFC r286074:
GCC: Add a new option "-fstack-protector-strong"

This includes additional functions to be protected: those that
have local array definitions, or have references to local frame
addresses. This is a new option in GCC-4.9 that was relicensed
by Han Shen from Google under GPLv2.

Obtained from: OpenBSD (2014-01-14)

261306 31-Jan-2014 pfg

MFC r261178:

gcc: Add support for -Wmissing-prototypes in C++

Support for warnings about missing prototypes in C++ was added by Apple
GCC (Radar 6261539). Most of the code crept into r260311 so it felt
natural to make use of it.

Obtained from: Apple GCC - 5646

261188 26-Jan-2014 pfg

MFC r260311, r260831:

gcc: Add support for Apple's Block extension

Block objects [1] are a C-level syntactic and runtime feature. They
are similar to standard C functions, but in addition to executable
code they may also contain variable bindings to automatic (stack)
or managed (heap) memory. A block can therefore maintain a set of
state (data) that it can use to impact behavior when executed.

This port is based on Apple's GCC 5646 with some bugfixes from
Apple GCC 5666.3. It has some small differences with the support
in clang, which remains the recommended compiler.

Perhaps the most notable difference is that in GCC __block is not
actually a keyword, but a macro. There may be workaround for this
issue in the future. Other issues can be consulted in the clang
documentation [2]

For better compatiblity with Apple's GCC and llvm-gcc, some related
fixes and features from Apple have been included. Support for the
non-standard nested functions in GCC is now off by default.

No effort was made to update the ObjC support since FreeBSD doesn't
carry ObjC in the base system but some of the code crept in and
was more difficult to remove than to adjust.

References:
[1]
https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/Blocks/Articles/00_Introduction.html
[2]
http://clang.llvm.org/compatibility.html#block-variable-initialization

Obtained from: Apple GCC 4.2


/freebsd-10-stable/contrib/gcc/ChangeLog.apple
/freebsd-10-stable/contrib/gcc/attribs.c
/freebsd-10-stable/contrib/gcc/c-common.c
/freebsd-10-stable/contrib/gcc/c-common.h
/freebsd-10-stable/contrib/gcc/c-convert.c
/freebsd-10-stable/contrib/gcc/c-cppbuiltin.c
/freebsd-10-stable/contrib/gcc/c-decl.c
/freebsd-10-stable/contrib/gcc/c-objc-common.h
/freebsd-10-stable/contrib/gcc/c-opts.c
/freebsd-10-stable/contrib/gcc/c-parser.c
/freebsd-10-stable/contrib/gcc/c-pretty-print.c
/freebsd-10-stable/contrib/gcc/c-pretty-print.h
/freebsd-10-stable/contrib/gcc/c-tree.h
/freebsd-10-stable/contrib/gcc/c-typeck.c
/freebsd-10-stable/contrib/gcc/c.opt
/freebsd-10-stable/contrib/gcc/calls.c
/freebsd-10-stable/contrib/gcc/cgraph.h
/freebsd-10-stable/contrib/gcc/cgraphunit.c
/freebsd-10-stable/contrib/gcc/convert.c
/freebsd-10-stable/contrib/gcc/convert.h
/freebsd-10-stable/contrib/gcc/cp/ChangeLog.apple
/freebsd-10-stable/contrib/gcc/cp/call.c
/freebsd-10-stable/contrib/gcc/cp/class.c
/freebsd-10-stable/contrib/gcc/cp/cp-gimplify.c
/freebsd-10-stable/contrib/gcc/cp/cp-objcp-common.c
/freebsd-10-stable/contrib/gcc/cp/cp-objcp-common.h
/freebsd-10-stable/contrib/gcc/cp/cp-tree.h
/freebsd-10-stable/contrib/gcc/cp/decl.c
/freebsd-10-stable/contrib/gcc/cp/decl.h
/freebsd-10-stable/contrib/gcc/cp/decl2.c
/freebsd-10-stable/contrib/gcc/cp/error.c
/freebsd-10-stable/contrib/gcc/cp/init.c
/freebsd-10-stable/contrib/gcc/cp/mangle.c
/freebsd-10-stable/contrib/gcc/cp/name-lookup.c
/freebsd-10-stable/contrib/gcc/cp/name-lookup.h
/freebsd-10-stable/contrib/gcc/cp/parser.c
/freebsd-10-stable/contrib/gcc/cp/pt.c
/freebsd-10-stable/contrib/gcc/cp/semantics.c
/freebsd-10-stable/contrib/gcc/cp/tree.c
/freebsd-10-stable/contrib/gcc/cp/typeck.c
/freebsd-10-stable/contrib/gcc/dbxout.c
extend.texi
invoke.texi
/freebsd-10-stable/contrib/gcc/dwarf2.h
/freebsd-10-stable/contrib/gcc/dwarf2out.c
/freebsd-10-stable/contrib/gcc/expmed.c
/freebsd-10-stable/contrib/gcc/expr.c
/freebsd-10-stable/contrib/gcc/fold-const.c
/freebsd-10-stable/contrib/gcc/function.c
/freebsd-10-stable/contrib/gcc/function.h
/freebsd-10-stable/contrib/gcc/ggc-common.c
/freebsd-10-stable/contrib/gcc/ggc.h
/freebsd-10-stable/contrib/gcc/langhooks-def.h
/freebsd-10-stable/contrib/gcc/langhooks.c
/freebsd-10-stable/contrib/gcc/langhooks.h
/freebsd-10-stable/contrib/gcc/stor-layout.c
/freebsd-10-stable/contrib/gcc/stub-objc.c
/freebsd-10-stable/contrib/gcc/targhooks.c
/freebsd-10-stable/contrib/gcc/toplev.c
/freebsd-10-stable/contrib/gcc/tree-gimple.h
/freebsd-10-stable/contrib/gcc/tree-nested.c
/freebsd-10-stable/contrib/gcc/tree.c
/freebsd-10-stable/contrib/gcc/tree.def
/freebsd-10-stable/contrib/gcc/tree.h
/freebsd-10-stable/contrib/gcc/varasm.c
/freebsd-10-stable/contrib/gcclibs/include/libiberty.h
/freebsd-10-stable/contrib/gcclibs/libiberty/physmem.c
260918 20-Jan-2014 pfg

MFC r260014, r260099:

gcc: Add support for label attributes and "unavailable" attribute.

Apple GCC has extensions to support for both label attributes and
an "unavailable" attribute. These are critical for objc but are
also useful in regular C/C++.

Obtained from: Apple GCC 4.2 - 5531

260568 12-Jan-2014 pfg

MFC r259920:

gcc: Implement -Wmost for compatibility with clang.

This is equivalent to -Wall -Wno-parentheses.

Obtained from: Apple GCC 4.2 - 5531

260139 31-Dec-2013 pfg

MFC r259525, r259526, r259529

gcc: small merges from upstream

fix ICE in rs6000 when using -fno-trapping-math.
Solves GCC-PR target/30485

Solve GCC issues:
PR middle-end/32602
PR middle-end/32603

Updates the to documentation and processing improvement.

Obtained from: gcc 4.3 (rev. 120902, 120902, 119427, 126278, 126422;
GPLv2)

260074 30-Dec-2013 pfg

MFC r259005, r259092:

gcc: Add -flax-vector-conversions
gcc: new fvisibility-ms-compat option

These are useful for compatibility with newwer gcc and clang.

Obtained from: gcc 4.3 (rev. 120572, 120688, 126088; GPLv2)

259947 27-Dec-2013 pfg

gcc: Merge upstream changes.

Include types in error message for build_binary_op.

Mostly cosmetic changes, to reduce differences with Apple's gcc.

Obtained from: gcc 4.3 (rev. 120611, 124839, 125239; GPLv2)

259890 25-Dec-2013 pfg

MFC r258826, r259555, r 259558:

libcpp: Merge fixes from upstream
Fixes:
GCC preprocessor/29966:
GCC preprocessor/28709:
GCC c/31924
GCC preprocessor/14331

gcc: add Apple-compatible -Wnewline-eof

Obtained from: gcc per-4.3 (rev. 121340, 124356, 124358, 124730,
125212, 125255 ; GPLv2)
Apple Inc. (Apple GCC 4.2 - 5531)

259694 21-Dec-2013 pfg

MFC r258017, r258429, r258748, r258817:

Merge updates from FSF pre4.3 GCC inspired on Apple's gcc:

Updates to libiberty and mangling.
New align attribute.
Merge Apple updates to libstdc++.


/freebsd-10-stable/contrib/binutils/binutils/cxxfilt.c
/freebsd-10-stable/contrib/gcc/ChangeLog.gcc43
/freebsd-10-stable/contrib/gcc/builtins.c
/freebsd-10-stable/contrib/gcc/c-common.c
/freebsd-10-stable/contrib/gcc/c-decl.c
/freebsd-10-stable/contrib/gcc/cp/ChangeLog.gcc43
/freebsd-10-stable/contrib/gcc/cp/decl.c
/freebsd-10-stable/contrib/gcc/cp/mangle.c
/freebsd-10-stable/contrib/gcc/cp/typeck.c
extend.texi
/freebsd-10-stable/contrib/gcc/flags.h
/freebsd-10-stable/contrib/gcc/print-tree.c
/freebsd-10-stable/contrib/gcc/toplev.c
/freebsd-10-stable/contrib/gcc/tree.c
/freebsd-10-stable/contrib/gcc/tree.h
/freebsd-10-stable/contrib/gcc/varasm.c
/freebsd-10-stable/contrib/gcclibs/libiberty/ChangeLog.gcc43
/freebsd-10-stable/contrib/gcclibs/libiberty/choose-temp.c
/freebsd-10-stable/contrib/gcclibs/libiberty/cp-demangle.c
/freebsd-10-stable/contrib/gcclibs/libiberty/cp-demangle.h
/freebsd-10-stable/contrib/gcclibs/libiberty/floatformat.c
/freebsd-10-stable/contrib/gcclibs/libiberty/functions.texi
/freebsd-10-stable/contrib/gcclibs/libiberty/pex-unix.c
/freebsd-10-stable/contrib/gcclibs/libiberty/strsignal.c
/freebsd-10-stable/contrib/gcclibs/libiberty/testsuite/demangle-expected
/freebsd-10-stable/contrib/gcclibs/libiberty/testsuite/test-demangle.c
/freebsd-10-stable/contrib/libstdc++/include/bits/basic_string.h
/freebsd-10-stable/contrib/libstdc++/include/bits/basic_string.tcc
/freebsd-10-stable/contrib/libstdc++/include/bits/stl_algobase.h
/freebsd-10-stable/contrib/libstdc++/include/bits/stl_tree.h
/freebsd-10-stable/contrib/libstdc++/include/bits/stl_vector.h
/freebsd-10-stable/contrib/libstdc++/include/ext/mt_allocator.h
/freebsd-10-stable/contrib/libstdc++/include/ext/throw_allocator.h
/freebsd-10-stable/contrib/libstdc++/libsupc++/eh_alloc.cc
/freebsd-10-stable/contrib/libstdc++/src/mt_allocator.cc
259563 18-Dec-2013 pfg

MFC r258428, r258445

gcc: another round of merges from the gcc pre-43 branch.

Bring The following revisions from the gcc43 branch[1]:

118360, 118361, 118363, 118576, 119820,
123906, 125246, and 125721.

They all have in common that the were merged long ago
into Apple's gcc and should help improve the general
quality of the compiler and make it easier to bring
new features from Apple's gcc42.

For details please review the additions to the files:
gcc/ChangeLog.gcc43
gcc/cp/ChangeLog.gcc43 (new, adds previous revisions)

Fix crosscompilation (r258445 by andreast)
Reference:
[1] http://gcc.gnu.org/viewcvs/gcc/trunk/?pathrev=126700

Obtained from: gcc pre4.3 (GPLv2) branch
MFC after: 3 weeks


/freebsd-10-stable/contrib/gcc/ChangeLog.gcc43
/freebsd-10-stable/contrib/gcc/Makefile.in
/freebsd-10-stable/contrib/gcc/builtin-types.def
/freebsd-10-stable/contrib/gcc/builtins.c
/freebsd-10-stable/contrib/gcc/builtins.def
/freebsd-10-stable/contrib/gcc/cgraphunit.c
/freebsd-10-stable/contrib/gcc/collect2.c
/freebsd-10-stable/contrib/gcc/config/i386/beos-elf.h
/freebsd-10-stable/contrib/gcc/config/i386/cygwin.h
/freebsd-10-stable/contrib/gcc/config/i386/i386.c
/freebsd-10-stable/contrib/gcc/config/i386/i386.h
/freebsd-10-stable/contrib/gcc/config/i386/i386.md
/freebsd-10-stable/contrib/gcc/config/i386/nto.h
/freebsd-10-stable/contrib/gcc/config/rs6000/aix.h
/freebsd-10-stable/contrib/gcc/config/rs6000/sysv4.h
/freebsd-10-stable/contrib/gcc/config/svr4.h
/freebsd-10-stable/contrib/gcc/configure
/freebsd-10-stable/contrib/gcc/configure.ac
/freebsd-10-stable/contrib/gcc/coverage.c
/freebsd-10-stable/contrib/gcc/cp/ChangeLog.gcc43
/freebsd-10-stable/contrib/gcc/cp/decl2.c
/freebsd-10-stable/contrib/gcc/cp/name-lookup.c
/freebsd-10-stable/contrib/gcc/cppdefault.c
extend.texi
libgcc.texi
rtl.texi
/freebsd-10-stable/contrib/gcc/dwarf2out.c
/freebsd-10-stable/contrib/gcc/expr.c
/freebsd-10-stable/contrib/gcc/fold-const.c
/freebsd-10-stable/contrib/gcc/gcc.c
/freebsd-10-stable/contrib/gcc/genattrtab.c
/freebsd-10-stable/contrib/gcc/genopinit.c
/freebsd-10-stable/contrib/gcc/libgcc-std.ver
/freebsd-10-stable/contrib/gcc/libgcc2.c
/freebsd-10-stable/contrib/gcc/libgcc2.h
/freebsd-10-stable/contrib/gcc/mips-tdump.c
/freebsd-10-stable/contrib/gcc/mips-tfile.c
/freebsd-10-stable/contrib/gcc/mklibgcc.in
/freebsd-10-stable/contrib/gcc/optabs.c
/freebsd-10-stable/contrib/gcc/optabs.h
/freebsd-10-stable/contrib/gcc/reload1.c
/freebsd-10-stable/contrib/gcc/rtl.def
/freebsd-10-stable/contrib/gcc/simplify-rtx.c
/freebsd-10-stable/contrib/gcc/tree-ssa-propagate.c
/freebsd-10-stable/contrib/gcc/tree.c
/freebsd-10-stable/contrib/gcc/tree.h
/freebsd-10-stable/gnu/usr.bin/cc/Makefile.inc
/freebsd-10-stable/gnu/usr.bin/cc/cc_tools/freebsd-native.h
259405 15-Dec-2013 pfg

MFC rr258501, r258507;
gcc: Bring updates from Google's enhanced gcc-4.2.1.

Google released and enhanced version of gcc-4.2.1 plus their local
patches for Android[1].

The patches are owned by Google and the license hasn't been changed
from the original GPLv2. We are only bringing a subset of the
available patches that may be helpful in FreeBSD, in other words,
changes specific to android are not included.

From the README.google file[1].

Patches applied to google_vendor_src_branch/gcc/gcc-4.2.1:

gcc/Makefile.in
gcc/c-common.c
gcc/c-common.h
gcc/c-opts.c
gcc/c-typeck.c
gcc/cp/typeck.c
gcc/doc/invoke.texi
gcc/flags.h
gcc/opts.c
gcc/tree-flow.h
gcc/tree-ssa-alias-warnings.c
gcc/tree-ssa-alias.c

Backport of -Wstrict-aliasing from mainline.
Silvius Rus <rus@google.com>

gcc/coverage.c:
Patch coverage_checksum_string for PR 25351.
Seongbae Park <spark@google.com>
Not yet submitted to FSF.

gcc/c-opts.c
gcc/c-ppoutput.c
gcc/c.opt
gcc/doc/cppopts.texi
libcpp/Makefile.in
libcpp/directives-only.c
libcpp/directives.c
libcpp/files.c
libcpp/include/cpplib.h
libcpp/init.c
libcpp/internal.h
libcpp/macro.c
Support for -fdirectives-only.
Ollie Wild <aaw@google.com>.
Submitted to FSF but not yet approved.

libstdc++-v3/include/ext/hashtable.h
http://b/742065
http://b/629994
Reduce min size of hashtable for hash_map, hash_set from 53 to 5

libstdc++-v3/include/ext/hashtable.h
http://b/629994
Do not iterate over buckets if hashtable is empty.

gcc/common.opt
gcc/doc/invoke.texi
gcc/flags.h
gcc/gimplify.c
gcc/opts.c
Add Saito's patch for -finstrument-functions-exclude-* options.

gcc/common.opt
gcc/doc/invoke.texi
gcc/final.c
gcc/flags.h
gcc/opts.c
gcc/testsuite/gcc.dg/Wframe-larger-than.c
Add a new flag -Wframe-larger-than- which enables a new warning
when a frame size of a function is larger than specified.
This patch hasn't been integrated into gcc mainline yet.

gcc/tree-vrp.c
Add a hack to avoid using ivopts information for pointers starting
at constant values.

Reference:

[1]
https://android.googlesource.com/toolchain/gcc/+/master/gcc-4.2.1/

Obtained from: Google Inc.

259268 12-Dec-2013 pfg

MFC r258081, r258138, r258143, r258179, r258157, r258204, 258205,
r258206, r258207, r258321

This is a series of commits inspired on Google's gcc-4.2.1 for
Android that were taken from the gcc pre-4.3 under the GPLv2.

gcc: Backport fixes for -W parentheses in C++
This fixes GCC 19564.
gcc: merge rs6000 change from FSF pre-gcc43
Don't set MASK_PPC_GFXOPT for 8540 or 8548.
Merge vrp-tree fix from gcc-4.3
Fix missed conversion from / to >> (GCC PR32521)
Merge in GCCr120505 to include definition of TREE_OVERFLOW_P
gcc: warn about integer overflow in constant expressions in the C++ frontend.
gcc: Add a new option -Wvla to warn variable length array.
libcpp: preprocessor speedup patches from upstream gcc.
gcc: add femit-struct-debug support to reduce Reduce dwarf debug size
gcc: Fix postreload-gcse treatment of call-clobbered registers.
gcc: Record some previous commits in the ChangeLog.gcc43 file.

256281 10-Oct-2013 gjb

Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


255185 03-Sep-2013 jmg

add support to gcc for AES and PCLMUL intrinsics... This addes the
-maes option, but not the -mpclmul option as I ran out of bits in
the 32 bit flags field... You can -D__PCLMUL__ to get this, but it
won't be compatible w/ clang and modern gcc...

Reviewed by: -current, -toolchain


255107 31-Aug-2013 pfg

Add support for the GCC binary integer constants extension.

This is required to build the i965 backend with newer versions of mesa.

Original patch from Joerg Wunsch in GCC Bug 23479, under the GPLv2;
also taken from there in OpenBSD.

Obtained from: gcc 4.3 (rev. 125346; GPLv2)
MFC after: 5 days


251212 01-Jun-2013 pfg

GCC: bring back experimental support for amdfam10/barcelona CPUs.

Initial support for the AMD amdfam10 chipsets has been available in the
gcc43 branch under GPLv2. AMD and some linux distributions (OpenSUSE) did
a backport of the amdfam10 support and made it available.

This is a revised subset of the support initially brought in in r236962
and later reverted. The collateral efects seem to have disappeared but
it is still recommended to set the CPUTYPE with caution.

Reviewed by: jkim (ages ago)
MFC after: 3 weeks


237021 13-Jun-2012 pfg

Revert r236962 - Experimental amdfam10/barcelona support.

The patches are unexpectedly causing gcc to fail while
building ports/graphics/ImageMagick even when the cpu
flags are not used.

Reported by: Andreas Tobler


236962 12-Jun-2012 pfg

Add experimental support for amdfam10/barcelona from the GCC 4.3 branch.

Initial support for the AMD barcelona chipsets has been available in the
gcc43 branch under GPLv2 but was not included when the Core 2 support
was brought to the system gcc.

AMD and some linux distributions (OpenSUSE) did a backport of the amdfam10
support and made them available. Unfortunately this is still experimental
and while it can improve performance, enabling the CPUTYPE may break some
C++ ports (like clang).

Special care was taken to make sure that the patches predate the GPLv3
switch upstream.

Tested by: Vladimir Kushnir
Reviewed by: mm
Approved by: jhb (mentor)
MFC after: 2 weeks


220755 17-Apr-2011 dim

Remove libobjc and other Objective-C related components, as these are
extremely outdated, and not used by anything in the base system.

Silence from: current@


220150 29-Mar-2011 mm

Upgrade of base gcc and libstdc++ to the last GPLv2-licensed revision
(rev. 127959 of gcc-4_2-branch).

Resolved GCC bugs:
c++: 17763, 29365, 30535, 30917, 31337, 31941, 32108, 32112, 32346,
32898, 32992
debug: 32610, 32914
libstdc++: 33084, 33128
middle-end: 32563
rtl-optimization: 33148
tree-optimization: 25413, 32723
target: 32218

Tested by: pointyhat (miwi)
Obtained from: gcc (gcc-4_2-branch up to rev. 127959)
PR: gnu/153298, gnu/153959, gnu/154385
MFC after: 1 month


219639 14-Mar-2011 mm

Backport SSSE3 instruction set support to base gcc.
Enabled by default for -march=core2

Obtained from: gcc 4.3 (rev. 117958, 121687, 121726, 123639; GPLv2)
MFC after: 2 weeks


219374 07-Mar-2011 mm

Backport Intel Core 2 and AMD Geode CPU types from gcc-4.3 (GPLv2)
These options are supported in this shape in all newer GCC versions.

PR: gnu/155308
Obtained from: gcc 4.3 (rev. 118090, 118973, 120846; GPLv2)
MFC after: 2 weeks


218895 20-Feb-2011 mm

Backport svn r124339 from gcc 4.3 and add opteron-sse3, athlon64-sse3
and k8-sse3 cpu-types for -march=/-mtune= gcc options.
These new cpu-types include the SSE3 instruction set that is supported
by all newer AMD Athlon 64 and Opteron processors.
All three cpu-types are supported by clang and all gcc versions
starting with 4.3 SVN rev 124339 (at that time GPLv2 licensed).

PR: gnu/154906
Discussed with: kib, kan, dim
Obtained from: gcc 4.3 (r124339, GPLv2 licensed)
MFC after: 2 weeks


189824 14-Mar-2009 das

Make gcc use C99 inline semantics in c99 and gnu99 mode. This was the
original intent, but the functionality wasn't implemented until after
gcc 4.2 was released. However, if you compiled a program that would
behave differently before and after this change, gcc 4.2 would have
warned you; hence, everything currently in the base system is
unaffected by this change. This patch also adds additional warnings
about certain inline function-related bogosity, e.g., using a
static non-const local variable in an inline function.

These changes were merged from a snapshot of gcc mainline from March
2007, prior to the GPLv3 switch. I then ran the regression test suite
from a more recent gcc snapshot and fixed the important bugs it found.
I also squelched the following warning unless -pedantic is specified:

foo is static but used in inline function bar which is not static

This is consistent with LLVM's behavior, but not consistent with gcc 4.3.

Reviewed by: arch@


181540 10-Aug-2008 das

Doc updates for changes in the default values of
-ffancy-math-387 and -mmath-errno.


171826 14-Aug-2007 kan

This commit was generated by cvs2svn to compensate for changes in r171825,
which included commits to RCS files with non-trunk default branches.


169690 19-May-2007 kan

This commit was generated by cvs2svn to compensate for changes in r169689,
which included commits to RCS files with non-trunk default branches.


162510 21-Sep-2006 ru

This commit was generated by cvs2svn to compensate for changes in r162509,
which included commits to RCS files with non-trunk default branches.


161652 26-Aug-2006 kan

This commit was generated by cvs2svn to compensate for changes in r161651,
which included commits to RCS files with non-trunk default branches.


146896 03-Jun-2005 kan

This commit was generated by cvs2svn to compensate for changes in r146895,
which included commits to RCS files with non-trunk default branches.


133583 12-Aug-2004 kan

This commit was generated by cvs2svn to compensate for changes in r133582,
which included commits to RCS files with non-trunk default branches.


132719 28-Jul-2004 kan

This commit was generated by cvs2svn to compensate for changes in r132718,
which included commits to RCS files with non-trunk default branches.


124152 05-Jan-2004 kan

This commit was generated by cvs2svn to compensate for changes in r124151,
which included commits to RCS files with non-trunk default branches.


122181 07-Nov-2003 kan

This commit was generated by cvs2svn to compensate for changes in r122180,
which included commits to RCS files with non-trunk default branches.


119257 22-Aug-2003 kan

This commit was generated by cvs2svn to compensate for changes in r119256,
which included commits to RCS files with non-trunk default branches.


117396 11-Jul-2003 kan

This commit was generated by cvs2svn to compensate for changes in r117395,
which included commits to RCS files with non-trunk default branches.


110612 10-Feb-2003 kan

This commit was generated by cvs2svn to compensate for changes in r110611,
which included commits to RCS files with non-trunk default branches.


107591 04-Dec-2002 obrien

This commit was generated by cvs2svn to compensate for changes in r107590,
which included commits to RCS files with non-trunk default branches.


104753 10-Oct-2002 kan

This commit was generated by cvs2svn to compensate for changes in r104752,
which included commits to RCS files with non-trunk default branches.


103446 17-Sep-2002 kan

This commit was generated by cvs2svn to compensate for changes in r103445,
which included commits to RCS files with non-trunk default branches.


102781 01-Sep-2002 kan

This commit was generated by cvs2svn to compensate for changes in r102780,
which included commits to RCS files with non-trunk default branches.


96264 09-May-2002 obrien

This commit was generated by cvs2svn to compensate for changes in r96263,
which included commits to RCS files with non-trunk default branches.


90076 01-Feb-2002 obrien

This commit was generated by cvs2svn to compensate for changes in r90075,
which included commits to RCS files with non-trunk default branches.