summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>2017-09-28 18:14:27 +0000
committeruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>2017-09-28 18:14:27 +0000
commita75b6aff308328b5c802dc708e206521c66d93cc (patch)
tree78b10c27aaaf84de3497ac9ed25d3c1cff250be0
parent6b09daa1e565dff7d943075de5f8329652d1192d (diff)
downloadgcc-a75b6aff308328b5c802dc708e206521c66d93cc.tar.gz
* config/i386/i386.c (ix86_print_operand_address_as): Do not check
index when encoding %esp as %rsp to avoid 0x67 prefix. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@253260 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/i386/i386.c9
2 files changed, 9 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index c8b67cdf2f9..2802cdf7511 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2017-09-28 Uros Bizjak <ubizjak@gmail.com>
+
+ * config/i386/i386.c (ix86_print_operand_address_as): Do not check
+ index when encoding %esp as %rsp to avoid 0x67 prefix.
+
2017-09-28 Sergey Shalnov <Sergey.Shalnov@intel.com>
* config/i386/i386.md (*movsf_internal, *movdf_internal):
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c
index 63db7ac2b5f..e282546c708 100644
--- a/gcc/config/i386/i386.c
+++ b/gcc/config/i386/i386.c
@@ -19953,12 +19953,11 @@ ix86_print_operand_address_as (FILE *file, rtx addr,
code = 'k';
}
- /* Since the upper 32 bits of RSP are always zero for x32, we can
- encode %esp as %rsp to avoid 0x67 prefix if there is no index or
- base register. */
+ /* Since the upper 32 bits of RSP are always zero for x32,
+ we can encode %esp as %rsp to avoid 0x67 prefix if
+ there is no index register. */
if (TARGET_X32 && Pmode == SImode
- && ((!index && base && REG_P (base) && REGNO (base) == SP_REG)
- || (!base && index && REGNO (index) == SP_REG)))
+ && !index && base && REG_P (base) && REGNO (base) == SP_REG)
code = 'q';
if (ASSEMBLER_DIALECT == ASM_ATT)