stmt.c (expand_asm_operands): Revert part of 2013-09-24 special casing inout operands.

* stmt.c (expand_asm_operands): Revert part of 2013-09-24 special
	casing inout operands.

From-SVN: r203056
This commit is contained in:
Alan Modra 2013-10-01 19:25:07 +09:30 committed by Alan Modra
parent f155737280
commit 9044483164
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2013-10-01 Alan Modra <amodra@gmail.com>
* stmt.c (expand_asm_operands): Revert part of 2013-09-24 special
casing inout operands.
2013-10-01 Richard Biener <rguenther@suse.de>
PR tree-optimization/58553

View File

@ -807,9 +807,7 @@ expand_asm_operands (tree string, tree outputs, tree inputs,
|| is_inout)
{
op = expand_expr (val, NULL_RTX, VOIDmode,
!allows_reg ? EXPAND_MEMORY
: !is_inout ? EXPAND_WRITE
: EXPAND_NORMAL);
!allows_reg ? EXPAND_MEMORY : EXPAND_WRITE);
if (MEM_P (op))
op = validize_mem (op);