diff options
author | Richard Henderson <rth@cygnus.com> | 2000-03-22 16:53:28 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2000-03-22 16:53:28 -0800 |
commit | 17e71da2acb9253b1b1ffdecacb003364e738664 (patch) | |
tree | be077b3142ab58fd1495d45b5c08ca490942e7cb /gcc/stmt.c | |
parent | 2f939d94068972c5b14ab98f50c6789621810a4a (diff) | |
download | gcc-17e71da2acb9253b1b1ffdecacb003364e738664.zip gcc-17e71da2acb9253b1b1ffdecacb003364e738664.tar.gz gcc-17e71da2acb9253b1b1ffdecacb003364e738664.tar.bz2 |
* stmt.c (expand_asm_operands): Don't promote the temporary.
From-SVN: r32699
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r-- | gcc/stmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1540,7 +1540,7 @@ expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line) } else { - output_rtx[i] = assign_temp (type, 0, 0, 0); + output_rtx[i] = assign_temp (type, 0, 0, 1); TREE_VALUE (tail) = make_tree (type, output_rtx[i]); } |