This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH] Fix PR66509
- From: Uros Bizjak <ubizjak at gmail dot com>
- To: "gcc-patches at gcc dot gnu dot org" <gcc-patches at gcc dot gnu dot org>
- Cc: Jack Howarth <howarth dot at dot gcc at gmail dot com>, Iain Sandoe <iain at codesourcery dot com>, "H.J. Lu" <hjl dot tools at gmail dot com>, Mike Stump <mikestump at comcast dot net>
- Date: Mon, 15 Jun 2015 11:51:32 +0200
- Subject: Re: [PATCH] Fix PR66509
- Authentication-results: sourceware.org; auth=none
Hello!
> The attached patch revises the tests for the filds and fists
> mnemonics to use the assembly...
>
> filds mem(%rip); fists mem(%rip)
>
> and the test for the fildq and fistq mnemonics to use the assembly...
>
> fildq mem(%rip); fistpq mem(%rip)
>
> which will assemble for both 64-bit and 32-bit mode.
It won't.
$ as -32 rip.s
rip.s: Assembler messages:
rip.s:1: Error: `mem(%rip)' is not a valid base/index expression
rip.s:1: Error: `mem(%rip)' is not a valid base/index expression
Uros.