Commit a47fed55 by Richard Kenner

Fix error in previous change

From-SVN: r33725
parent ad027eae
...@@ -10257,6 +10257,7 @@ do_store_flag (exp, target, mode, only_cheap) ...@@ -10257,6 +10257,7 @@ do_store_flag (exp, target, mode, only_cheap)
); );
if (! get_subtarget (subtarget) if (! get_subtarget (subtarget)
|| GET_MODE (subtarget) != operand_mode
|| ! safe_from_p (subtarget, inner, 1)) || ! safe_from_p (subtarget, inner, 1))
subtarget = 0; subtarget = 0;
...@@ -10307,6 +10308,7 @@ do_store_flag (exp, target, mode, only_cheap) ...@@ -10307,6 +10308,7 @@ do_store_flag (exp, target, mode, only_cheap)
preexpand_calls (exp); preexpand_calls (exp);
if (! get_subtarget (target) if (! get_subtarget (target)
|| GET_MODE (subtarget) != operand_mode
|| ! safe_from_p (subtarget, arg1, 1)) || ! safe_from_p (subtarget, arg1, 1))
subtarget = 0; subtarget = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment