From: Uros Bizjak Date: Tue, 1 Aug 2017 11:15:52 +0000 (+0200) Subject: re PR target/81641 (Assemble failure with named address spaces and -masm=intel) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4f3e333a872427dc34a7235dc31431fc5c6cfd88;p=gcc.git re PR target/81641 (Assemble failure with named address spaces and -masm=intel) PR target/81641 * config/i386/i386.c (ix86_print_operand_address_as): For -masm=intel print "ds:" only for immediates in generic address space. testsuite/ChangeLog: PR target/81641 * gcc.target/i386/pr81641.c: New test. From-SVN: r250769 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bb56487bdff..ca6353ad6fe 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2017-08-01 Uros Bizjak + + PR target/81641 + * config/i386/i386.c (ix86_print_operand_address_as): For -masm=intel + print "ds:" only for immediates in generic address space. + 2017-08-01 Uros Bizjak PR target/81639 diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 27011c38a45..494a18a2cd1 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -19446,7 +19446,7 @@ ix86_print_operand_address_as (FILE *file, rtx addr, /* Displacement only requires special attention. */ if (CONST_INT_P (disp)) { - if (ASSEMBLER_DIALECT == ASM_INTEL && parts.seg == ADDR_SPACE_GENERIC) + if (ASSEMBLER_DIALECT == ASM_INTEL && ADDR_SPACE_GENERIC_P (as)) fputs ("ds:", file); fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (disp)); } diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5c21b681ae8..c9ebc51c2c4 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2017-08-01 Uros Bizjak + + PR target/81641 + * gcc.target/i386/pr81641.c: New test. + 2017-08-01 Uros Bizjak PR target/81639 diff --git a/gcc/testsuite/gcc.target/i386/pr81641.c b/gcc/testsuite/gcc.target/i386/pr81641.c new file mode 100644 index 00000000000..15da9ac26ef --- /dev/null +++ b/gcc/testsuite/gcc.target/i386/pr81641.c @@ -0,0 +1,11 @@ +/* PR target/81641 */ +/* { dg-do assemble } */ +/* { dg-options "-O -masm=intel" } */ +/* { dg-require-effective-target masm_intel } */ + +int test(void) +{ + int __seg_fs *f = (int __seg_fs *)16; + int __seg_gs *g = (int __seg_gs *)16; + return *f + *g; +}