diff options
author | Doug Evans <dje@gnu.org> | 1993-05-06 05:47:50 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1993-05-06 05:47:50 +0000 |
commit | 8d46dca505984cdbc1e15685c5edc54885b2b76f (patch) | |
tree | 8e03e83f137019af28a7114cdcd64263f76acb03 /gcc | |
parent | 4be7cc989c0a8c63660791479b6875cd0362fb3d (diff) | |
download | gcc-8d46dca505984cdbc1e15685c5edc54885b2b76f.zip gcc-8d46dca505984cdbc1e15685c5edc54885b2b76f.tar.gz gcc-8d46dca505984cdbc1e15685c5edc54885b2b76f.tar.bz2 |
(HANDLE_SYSV_PRAGMA): Defined.
From-SVN: r4350
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/linux.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gcc/config/i386/linux.h b/gcc/config/i386/linux.h index 359a9f3..5018bfc 100644 --- a/gcc/config/i386/linux.h +++ b/gcc/config/i386/linux.h @@ -101,12 +101,18 @@ #undef ASM_APP_OFF #define ASM_APP_OFF "#NO_APP\n" +/* Don't default to pcc-struct-return, because gcc is the only compiler, and + we want to retain compatibility with older gcc versions. */ +#define DEFAULT_PCC_STRUCT_RETURN 0 + +/* We need that too. */ +#define HANDLE_SYSV_PRAGMA + #undef LINK_SPEC -/* Don't default to pcc-struct-return, because gcc is the only compiler, and +/* We want to pass -v to linker */ #if TARGET_CPU_DEFAULT == 2 #define LINK_SPEC "%{v:-dll-verbose} %{!m386:-m486}" #else #define LINK_SPEC "%{v:-dll-verbose} %{m486:-m486}" #endif -#define DEFAULT_PCC_STRUCT_RETURN 0 |