summaryrefslogtreecommitdiff
path: root/gcc/stmt.c
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2000-03-23 00:53:28 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2000-03-23 00:53:28 +0000
commit6262df6e45ad1dc19d6018bb780a37ef1e72c675 (patch)
treebe077b3142ab58fd1495d45b5c08ca490942e7cb /gcc/stmt.c
parent9308e976dc6e47b47a9e9102a3aba36a105d0667 (diff)
downloadgcc-6262df6e45ad1dc19d6018bb780a37ef1e72c675.tar.gz
* stmt.c (expand_asm_operands): Don't promote the temporary.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32699 138bc75d-0d04-0410-961f-82ee72b054a4
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 6ac6f6ec552..7aa29e7eb89 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]);
}