diff options
author | Mark Elbrecht <snowball3@usa.net> | 1999-04-10 04:34:36 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-04-09 22:34:36 -0600 |
commit | 9ee9f4f066750343f248331adec075e30fde7c7a (patch) | |
tree | dab6977b0e22d08dc978cd83f524c00869a2524f | |
parent | f58f945066d300d6be6fa4710a0bca213981b2a4 (diff) | |
download | gcc-9ee9f4f066750343f248331adec075e30fde7c7a.zip gcc-9ee9f4f066750343f248331adec075e30fde7c7a.tar.gz gcc-9ee9f4f066750343f248331adec075e30fde7c7a.tar.bz2 |
* i386/djgpp.h (SET_ASM_OP): Define.
From-SVN: r26330
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/config/i386/djgpp.h | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8aad0c7..9d16226 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -11,6 +11,8 @@ Sat Apr 10 05:25:28 1999 Daniel Jacobowitz <dan@debian.org> Sat Apr 10 05:14:50 1999 Mark Elbrecht <snowball3@usa.net> + * i386/djgpp.h (SET_ASM_OP): Define. + * collect2.c (find_a_file): Use HAVE_DOS_BASED_FILE_SYSTEM in place of the DIR_SEPARATOR test. Consider any file starting with a drivename to be absolute. diff --git a/gcc/config/i386/djgpp.h b/gcc/config/i386/djgpp.h index 2c238bc..6cee75b 100644 --- a/gcc/config/i386/djgpp.h +++ b/gcc/config/i386/djgpp.h @@ -33,6 +33,11 @@ Boston, MA 02111-1307, USA. */ #include "i386/gas.h" +/* Enable alias attribute support. */ +#ifndef SET_ASM_OP +#define SET_ASM_OP "\t.set" +#endif + /* Search for as.exe and ld.exe in DJGPP's binary directory. */ #define MD_EXEC_PREFIX "$DJDIR/bin/" |