re PR target/15790 ([3.4 only] Alignment error building gcc with i686-coff target)
authorJames E Wilson <wilson@specifixinc.com>
Tue, 8 Jun 2004 22:32:08 +0000 (22:32 +0000)
committerJim Wilson <wilson@gcc.gnu.org>
Tue, 8 Jun 2004 22:32:08 +0000 (15:32 -0700)
PR target/15790
* config/i386/i386-coff.h (ASM_OUTPUT_ALIGN): Define.

From-SVN: r82796

gcc/ChangeLog
gcc/config/i386/i386-coff.h

index 0edcc7a..9bc153f 100644 (file)
@@ -1,3 +1,8 @@
+2004-06-08  James E Wilson  <wilson@specifixinc.com>
+
+       PR target/15790
+       * config/i386/i386-coff.h (ASM_OUTPUT_ALIGN): Define.
+
 2004-06-08  Andrew Pinski  <pinskia@physics.uc.edu>
 
        * fold-const.c (fold_convert): Treat OFFSET_TYPE like
index 85a5193..1299cea 100644 (file)
@@ -60,4 +60,11 @@ Boston, MA 02111-1307, USA.  */
 #define ASM_GENERATE_INTERNAL_LABEL(BUF,PREFIX,NUMBER) \
   sprintf ((BUF), ".%s%ld", (PREFIX), (long)(NUMBER))
 
+/* GNU as expects alignment to be the number of bytes instead of the log for
+   COFF targets.  */
+
+#undef ASM_OUTPUT_ALIGN
+#define ASM_OUTPUT_ALIGN(FILE,LOG) \
+  if ((LOG)!=0) fprintf ((FILE), "\t.align %d\n", 1<<(LOG))
+
 /* end of i386-coff.h */