diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-12-31 21:27:36 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-12-31 21:27:36 -0500 |
commit | 6e81958a66749a62fdd4f50de26e52a10fa559da (patch) | |
tree | 6f8af50be674deb65e9a43be1365266cfd436606 /gcc/stmt.c | |
parent | 06089a8b2388b284287a073b26cbeefc71d9d615 (diff) | |
download | gcc-6e81958a66749a62fdd4f50de26e52a10fa559da.zip gcc-6e81958a66749a62fdd4f50de26e52a10fa559da.tar.gz gcc-6e81958a66749a62fdd4f50de26e52a10fa559da.tar.bz2 |
(expand_asm_operands): Call assign_temp with extra arg.
From-SVN: r10925
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r-- | gcc/stmt.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |