From 0faae2f5222db231c1287c1dda3499e88a29946d Mon Sep 17 00:00:00 2001 From: David Edelsohn Date: Thu, 11 Oct 2001 17:37:21 +0000 Subject: [PATCH] xcoff.h (UNALIGNED_DOUBLE_INT_ASM_OP): Only available in 64-bit mode. * config/rs6000/xcoff.h (UNALIGNED_DOUBLE_INT_ASM_OP): Only available in 64-bit mode. From-SVN: r46192 --- gcc/ChangeLog | 5 +++++ gcc/config/rs6000/xcoff.h | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 607e9790d81..71aa87c4f61 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-10-11 David Edelsohn + + * config/rs6000/xcoff.h (UNALIGNED_DOUBLE_INT_ASM_OP): Only + available in 64-bit mode. + 2001-10-11 Hans-Peter Nilsson * config.gcc: Add cris-*-aout, cris-*-elf, cris-*-none, diff --git a/gcc/config/rs6000/xcoff.h b/gcc/config/rs6000/xcoff.h index fbb74360bad..7fbc74aaf93 100644 --- a/gcc/config/rs6000/xcoff.h +++ b/gcc/config/rs6000/xcoff.h @@ -464,7 +464,8 @@ toc_section () \ #define UNALIGNED_SHORT_ASM_OP "\t.vbyte\t2," #define UNALIGNED_INT_ASM_OP "\t.vbyte\t4," -#define UNALIGNED_DOUBLE_INT_ASM_OP "\t.vbyte\t8," +/* Only define if alignment greater than 4. */ +#define UNALIGNED_DOUBLE_INT_ASM_OP (TARGET_64BIT ? "\t.vbyte\t8," : NULL) /* Output before instructions. */ #define TEXT_SECTION_ASM_OP "\t.csect .text[PR]"