Commit 97191ad0 by Jan-Benedict Glaw Committed by Jan-Benedict Glaw

* config/vax/constraints.md (T): Add missing CONSTANT_P check.

From-SVN: r202600
parent f8962cb2
2013-09-15 Jan-Benedict Glaw <jbglaw@lug-owl.de>
* config/vax/constraints.md (T): Add missing CONSTANT_P check.
2013-09-14 John David Anglin <danglin@gcc.gnu.org>
PR target/58382
......
......@@ -114,5 +114,6 @@
(define_constraint "T"
"@internal satisfies CONSTANT_P and, if pic is enabled, is not a SYMBOL_REF, LABEL_REF, or CONST."
(ior (not (match_code "const,symbol_ref,label_ref"))
(match_test "!flag_pic")))
(and (match_test ("CONSTANT_P (op)"))
(ior (not (match_code "symbol_ref,label_ref,const"))
(match_test "!flag_pic"))))
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