From: Bernd Schmidt Date: Wed, 20 Dec 2000 14:11:00 +0000 (+0000) Subject: Backport a fix to the 2.95 branch X-Git-Tag: prereleases/gcc-2.95.3-test1~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe58e4351ffa298b7f996f06c2d83694ee483fb9;p=thirdparty%2Fgcc.git Backport a fix to the 2.95 branch From-SVN: r38398 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3edb05f1b2a9..cfa6044bd6d9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2000-12-20 Bernd Schmidt + 2000-03-22 Richard Henderson + * stmt.c (expand_asm_operands): Don't promote the temporary. + Sun Sep 19 09:03:40 1999 Mark Mitchell * rtl.h (insns_safe_to_move_p): New function. * loop.c (find_and_verify_loops): Use it. diff --git a/gcc/stmt.c b/gcc/stmt.c index f55b2c955ded..914117c85e02 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -1351,7 +1351,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]); }