diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1999-02-17 12:54:28 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 1999-02-17 12:54:28 +0000 |
commit | aa56d457d77dcf7194c099c5a9ade1eee9ae05b0 (patch) | |
tree | c4e1f743290b468ac1910eb749df6bbff28f466a /gnu/usr.bin/gcc | |
parent | c997f8119e4603c12b1877991acbec2dc90b6fd2 (diff) |
Update to more recent work: remove DEFAULT_VTABLE_THUNKS, as there
is a big and subtle bug with it.
Diffstat (limited to 'gnu/usr.bin/gcc')
-rw-r--r-- | gnu/usr.bin/gcc/config/openbsd.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/usr.bin/gcc/config/openbsd.h b/gnu/usr.bin/gcc/config/openbsd.h index 2f8e9c1d9ed..2d555847b08 100644 --- a/gnu/usr.bin/gcc/config/openbsd.h +++ b/gnu/usr.bin/gcc/config/openbsd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: openbsd.h,v 1.15 1999/02/17 12:52:36 espie Exp $ */ +/* $OpenBSD: openbsd.h,v 1.16 1999/02/17 12:54:27 espie Exp $ */ /* common OpenBSD configuration. All OpenBSD architectures include this file, which is intended as @@ -266,7 +266,10 @@ do { \ /* Storage layout - * -------------- */ -/* Use VTABLE_THUNKS always: we don't have to worry about binary - compatibility with older C++ code. */ -#define DEFAULT_VTABLE_THUNKS 1 + -------------- */ +/* We don't have to worry about binary compatibility with older C++ code, + but there is a big known bug with vtable thunks which has not been + fixed yet, so DON'T activate it by default. + */ +/* #define DEFAULT_VTABLE_THUNKS 1 */ + |