From d7cd15e920b6c4bb40ab9d611535ca746d4109fb Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Sun, 29 Mar 1992 04:48:49 +0000 Subject: [PATCH] *** empty log message *** From-SVN: r624 --- gcc/config/i386/i386.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index 9878b503287..0d49e777213 100644 --- a/gcc/config/i386/i386.h +++ b/gcc/config/i386/i386.h @@ -57,6 +57,10 @@ extern int target_flags; and is not intended to be usable on this cpu. */ #define TARGET_REGPARM (target_flags & 020) +/* Put uninitialized locals into bss, not data. + Meaningful only on svr3. */ +#define TARGET_SVR3_SHLIB (target_flags & 040) + /* Macro to define tables used to set the flags. This is a list in braces of pairs in braces, each pair being { "NAME", VALUE } @@ -73,6 +77,8 @@ extern int target_flags; { "nortd", -8}, \ { "regparm", 020}, \ { "noregparm", -020}, \ + { "svr3-shlib", 040}, \ + { "nosvr3-shlib", -040}, \ { "", TARGET_DEFAULT}} /* target machine storage layout */ -- 2.30.2