aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/stmt.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 99faa4f..ec5fd06 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2000-03-22 Richard Henderson <rth@cygnus.com>
+
+ * stmt.c (expand_asm_operands): Don't promote the temporary.
+
2000-03-22 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
* builtin.c (get_pointer_alignment): Use DECL_P and TYPE_P macros.
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]);
}