OSDN Git Service

(expand_asm_operands): Call assign_temp with extra arg.
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 1 Jan 1996 02:27:36 +0000 (02:27 +0000)
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 1 Jan 1996 02:27:36 +0000 (02:27 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@10925 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/stmt.c

index 20b7464..413ff2f 100644 (file)
@@ -1477,7 +1477,7 @@ expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
        }
       else
        {
-         output_rtx[i] = assign_temp (type, 0, 0);
+         output_rtx[i] = assign_temp (type, 0, 0, 0);
          TREE_VALUE (tail) = make_tree (type, output_rtx[i]);
        }
     }
@@ -1577,7 +1577,7 @@ expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
              || GET_CODE (XVECEXP (body, 3, i)) == CONCAT))
        {
          tree type = TREE_TYPE (TREE_VALUE (tail));
-         rtx memloc = assign_temp (type, 1, 1);
+         rtx memloc = assign_temp (type, 1, 1, 1);
 
          emit_move_insn (memloc, XVECEXP (body, 3, i));
          XVECEXP (body, 3, i) = memloc;