2020-01-10 Vladimir Makarov <vmakarov@redhat.com>
- PR inline-asm/93207
+ PR inline-asm/93027
* lra-constraints.c (match_reload): Permit input operands have the
same mode as output while other input operands have a different
mode.
2020-01-10 Vladimir Makarov <vmakarov@redhat.com>
- PR inline-asm/93207
+ PR inline-asm/93027
+ * gcc.target/i386/pr93207.c: Rename to pr93027.c.
+
+2020-01-10 Vladimir Makarov <vmakarov@redhat.com>
+
+ PR inline-asm/93027
* gcc.target/i386/pr93207.c: Run it only for x86-64.
2020-01-10 David Malcolm <dmalcolm@redhat.com>
2020-01-10 Vladimir Makarov <vmakarov@redhat.com>
- PR inline-asm/93207
+ PR inline-asm/93027
* gcc.target/i386/pr93207.c: New test.
2020-01-10 Wilco Dijkstra <wdijkstr@arm.com>
--- /dev/null
+/* PR inline-asm/93207 */
+/* { dg-do compile { target x86_64-*-* } } */
+/* { dg-options "-O0" } */
+
+int main (void) {
+ int f = 0, w;
+
+ asm volatile(
+ ""
+ : "+m&l"(f)
+ : "0a"(&w)
+ );
+ return 0;
+}
+++ /dev/null
-/* PR inline-asm/93207 */
-/* { dg-do compile { target x86_64-*-* } } */
-/* { dg-options "-O0" } */
-
-int main (void) {
- int f = 0, w;
-
- asm volatile(
- ""
- : "+m&l"(f)
- : "0a"(&w)
- );
- return 0;
-}