OSDN Git Service

PR inline-asm/8788
authorsayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 9 May 2005 05:15:50 +0000 (05:15 +0000)
committersayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 9 May 2005 05:15:50 +0000 (05:15 +0000)
* stmt.c (expand_asm_operands): Avoid calling force_reg on BLKmode
operands.

* gcc.dg/pr8788-1.c: New testcase.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99422 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/stmt.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr8788-1.c [new file with mode: 0644]

index 418fa80..e4f13a8 100644 (file)
@@ -1,3 +1,9 @@
+2005-05-08  Roger Sayle  <roger@eyesopen.com>
+
+       PR inline-asm/8788
+       * stmt.c (expand_asm_operands): Avoid calling force_reg on BLKmode
+       operands.
+
 2005-05-08  Richard Henderson  <rth@redhat.com>
 
        * config/alpha/alpha.c (adjust_address): Fix typo last change.
index 94b018a..d1e71de 100644 (file)
@@ -877,7 +877,7 @@ expand_asm_operands (tree string, tree outputs, tree inputs,
 
       if (asm_operand_ok (op, constraint) <= 0)
        {
-         if (allows_reg)
+         if (allows_reg && TYPE_MODE (type) != BLKmode)
            op = force_reg (TYPE_MODE (type), op);
          else if (!allows_mem)
            warning (0, "asm operand %d probably doesn%'t match constraints",
index 3d4ba31..48d9936 100644 (file)
@@ -1,3 +1,8 @@
+2005-05-08  Roger Sayle  <roger@eyesopen.com>
+
+       PR inline-asm/8788
+       * gcc.dg/pr8788-1.c: New testcase.
+
 2005-05-08  Richard Sandiford  <rsandifo@redhat.com>
 
        PR target/21416
diff --git a/gcc/testsuite/gcc.dg/pr8788-1.c b/gcc/testsuite/gcc.dg/pr8788-1.c
new file mode 100644 (file)
index 0000000..74e1694
--- /dev/null
@@ -0,0 +1,20 @@
+/* PR inline-asm/8788 */
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+
+typedef struct {
+    long x[6];
+} myjmp_buf;
+
+typedef struct {
+    myjmp_buf regs;
+} my_stack;
+
+void switch_to_stack (my_stack *stack){
+    asm (  /* { dg-error "impossible constraint" } */
+/* { dg-warning "asm operand 1" "asm operand 1" { target *-*-* } 14 } */
+        "\n"
+        : "+r" (stack->regs)
+    );
+}
+