Commit a8fd4225 by Graham Stott Committed by Graham Stott

013-05-06 Graham Stott <grahams@btinternet.com>

        * gensupport.c (add_predicate_code): Also exclude SCRATCH from rtx
        codes which allow non-lvalues.

From-SVN: r198653
parent 9a0ee7b0
013-05-06 Graham Stott <grahams@btinternet.com>
* gensupport.c (add_predicate_code): Also exclude SCRATCH from rtx
codes which allow non-lvalues.
2013-05-06 Marc Glisse <marc.glisse@inria.fr> 2013-05-06 Marc Glisse <marc.glisse@inria.fr>
* tree.c (integer_all_onesp) <COMPLEX_CST>: Test that both * tree.c (integer_all_onesp) <COMPLEX_CST>: Test that both
......
...@@ -2732,7 +2732,8 @@ add_predicate_code (struct pred_data *pred, enum rtx_code code) ...@@ -2732,7 +2732,8 @@ add_predicate_code (struct pred_data *pred, enum rtx_code code)
&& code != MEM && code != MEM
&& code != CONCAT && code != CONCAT
&& code != PARALLEL && code != PARALLEL
&& code != STRICT_LOW_PART) && code != STRICT_LOW_PART
&& code != SCRATCH)
pred->allows_non_lvalue = true; pred->allows_non_lvalue = true;
if (pred->num_codes == 1) if (pred->num_codes == 1)
......
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