This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[PATCH] define INT_ASM_OP in config/i386/i386-aout.h
- To: gcc-patches at gcc dot gnu dot org
- Subject: [PATCH] define INT_ASM_OP in config/i386/i386-aout.h
- From: Michael Elizabeth Chastain <chastain at cygnus dot com>
- Date: Tue, 26 Sep 2000 12:23:53 -0700
- Cc: rth at cygnus dot com
The following patch fixes a problem with i386-pc-aout and other
i386-*-aout triples. It turns out that config/i386/i386.c uses INT_ASM_OP
no matter what the target format is, so all i386 formats need to define
INT_ASM_OP.
Richard Henderson has already reviewed this patch (on Aug 25 2000)
and wrote "This is fine."
Michael Chastain
<chastain@redhat.com>
===
ChangeLog entry:
2000-09-26 Michael Chastain <chastain@redhat.com>
* config/i386/i386-aout.h: define INT_ASM_OP.
Index: gcc/config/i386/i386-aout.h
===================================================================
RCS file: /cvs/gcc/egcs/gcc/config/i386/i386-aout.h,v
retrieving revision 1.3
diff -c -3 -p -r1.3 i386-aout.h
*** i386-aout.h 2000/01/31 07:28:05 1.3
--- i386-aout.h 2000/09/26 19:13:27
*************** Boston, MA 02111-1307, USA. */
*** 31,34 ****
--- 31,36 ----
#undef CPP_PREDEFINES
#define CPP_PREDEFINES ""
+ #define INT_ASM_OP ".long"
+
/* end of i386-aout.h */