Commit 0faae2f5 by David Edelsohn Committed by David Edelsohn

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
parent 0b85d816
2001-10-11 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/xcoff.h (UNALIGNED_DOUBLE_INT_ASM_OP): Only
available in 64-bit mode.
2001-10-11 Hans-Peter Nilsson <hp@axis.com> 2001-10-11 Hans-Peter Nilsson <hp@axis.com>
* config.gcc: Add cris-*-aout, cris-*-elf, cris-*-none, * config.gcc: Add cris-*-aout, cris-*-elf, cris-*-none,
......
...@@ -464,7 +464,8 @@ toc_section () \ ...@@ -464,7 +464,8 @@ toc_section () \
#define UNALIGNED_SHORT_ASM_OP "\t.vbyte\t2," #define UNALIGNED_SHORT_ASM_OP "\t.vbyte\t2,"
#define UNALIGNED_INT_ASM_OP "\t.vbyte\t4," #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. */ /* Output before instructions. */
#define TEXT_SECTION_ASM_OP "\t.csect .text[PR]" #define TEXT_SECTION_ASM_OP "\t.csect .text[PR]"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment