diff options
author | Jakub Jelinek <jakub@redhat.com> | 2009-09-18 10:48:31 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2009-09-18 10:48:31 +0200 |
commit | 2b5bcdeec811568080fbf35bf5927d6fa15b8e05 (patch) | |
tree | 981d8e57bf02df440ca5d153822f8c56b8b3fcaf /gcc/stmt.c | |
parent | 183d3da9969eba4318bb4a081529bfe612ef9505 (diff) | |
download | gcc-2b5bcdeec811568080fbf35bf5927d6fa15b8e05.tar.gz |
stmt.c (expand_asm_operands): Set REG_ATTRS on the temporary from output decl.
* stmt.c (expand_asm_operands): Set REG_ATTRS on the temporary from
output decl.
From-SVN: r151837
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r-- | gcc/stmt.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/stmt.c b/gcc/stmt.c index 42f22b5868b..ffd180ec112 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -825,6 +825,8 @@ expand_asm_operands (tree string, tree outputs, tree inputs, { op = assign_temp (type, 0, 0, 1); op = validize_mem (op); + if (!MEM_P (op) && TREE_CODE (TREE_VALUE (tail)) == SSA_NAME) + set_reg_attrs_for_decl_rtl (SSA_NAME_VAR (TREE_VALUE (tail)), op); TREE_VALUE (tail) = make_tree (type, op); } output_rtx[i] = op; |