diff options
author | Nathan Sidwell <nathan@gcc.gnu.org> | 2000-01-14 11:22:56 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2000-01-14 11:22:56 +0000 |
commit | 084871173a84f1df50b98ff887e619f132272f7e (patch) | |
tree | 41972f80d1851475ef016b98dc4325b87848643e | |
parent | 414094ded1661774994528bbb26d9aafad833132 (diff) | |
download | gcc-084871173a84f1df50b98ff887e619f132272f7e.zip gcc-084871173a84f1df50b98ff887e619f132272f7e.tar.gz gcc-084871173a84f1df50b98ff887e619f132272f7e.tar.bz2 |
Commit ChangeLog entries 2000-01-13 Nathan Sidwell <sidwell@codesourcery.com> corresponding to commit of configure.in 1.324...
Commit ChangeLog entries 2000-01-13 Nathan Sidwell <sidwell@codesourcery.com>
corresponding to commit of configure.in 1.324, acconfig.h 1.41,
Makefile.in 1.364, cp/g++spec.c 1.19, cp/Make-lang.in 1.42
ChangeLog:
* configure.in (--enable-new-gxx-abi): New option.
* acconfig.h (ENABLE_NEW_GXX_ABI): New define.
* Makefile.in (GXX_ABI_FLAG): New variable.
* configure: Regenerate.
cp/ChangeLog:
* g++spec.c (lang_specific_driver): Add -fnew-abi if
ENABLE_NEW_GXX_ABI defined.
* Make-lang.in (tinfo.o, tinfo2.o, exception.o, new.o,
opnew.o, opnewnt.o, opvnew.o, opvnewnt.o, opdel.o, opdelnt.o,
opvdel.o, opvdelnt.o): Use GXX_ABI_FLAG switch.
From-SVN: r31411
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/cp/ChangeLog | 8 |
2 files changed, 15 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dc1cb6c..4273ff8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -111,6 +111,13 @@ Thu Jan 13 16:03:06 2000 J"orn Rennecke <amylaar@cygnus.co.uk> * reload1.c (reload_combine_note_store): Use HARD_REGNO_NREGS. +2000-01-13 Nathan Sidwell <sidwell@codesourcery.com> + + * configure.in (--enable-new-gxx-abi): New option. + * acconfig.h (ENABLE_NEW_GXX_ABI): New define. + * Makefile.in (GXX_ABI_FLAG): New variable. + * configure: Regenerate. + 2000-01-13 Michael Hayes <m.hayes@elec.canterbury.ac.nz> * stor-layout.c (layout_type): Use FORCE_STRUCT_BLK. diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index d9cb4fe..240aa06 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -11,6 +11,14 @@ * call.c: If GATHER_STATISTICS, declare `n_build_method_call'. +2000-01-13 Nathan Sidwell <sidwell@codesourcery.com> + + * g++spec.c (lang_specific_driver): Add -fnew-abi if + ENABLE_NEW_GXX_ABI defined. + * Make-lang.in (tinfo.o, tinfo2.o, exception.o, new.o, + opnew.o, opnewnt.o, opvnew.o, opvnewnt.o, opdel.o, opdelnt.o, + opvdel.o, opvdelnt.o): Use GXX_ABI_FLAG switch. + 2000-01-12 Mark Mitchell <mark@codesourcery.com> * decl.c (start_cleanup_fn): Call pushdecl. |