From 17e71da2acb9253b1b1ffdecacb003364e738664 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Wed, 22 Mar 2000 16:53:28 -0800 Subject: [PATCH] * stmt.c (expand_asm_operands): Don't promote the temporary. From-SVN: r32699 --- gcc/ChangeLog | 4 ++++ gcc/stmt.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 99faa4f04df..ec5fd067df8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-03-22 Richard Henderson + + * stmt.c (expand_asm_operands): Don't promote the temporary. + 2000-03-22 Theodore Papadopoulo * builtin.c (get_pointer_alignment): Use DECL_P and TYPE_P macros. 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]); } -- 2.30.2