aboutsummaryrefslogtreecommitdiff
path: root/gcc/stmt.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@cygnus.com>2000-03-22 16:53:28 -0800
committerRichard Henderson <rth@gcc.gnu.org>2000-03-22 16:53:28 -0800
commit17e71da2acb9253b1b1ffdecacb003364e738664 (patch)
treebe077b3142ab58fd1495d45b5c08ca490942e7cb /gcc/stmt.c
parent2f939d94068972c5b14ab98f50c6789621810a4a (diff)
downloadgcc-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/stmt.c b/gcc/stmt.c
index 6ac6f6e..7aa29e7 100644
--- a/gcc/stmt.c
+++ b/gcc/stmt.c
@@ -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]);
}