Commit ed4c109e by Richard Sandiford Committed by Andreas Schwab

Author: Richard Sandiford <richard.sandiford@linaro.org>

PR target/43804
* gcc/config/m68k/constraints.md (T): Allow PIC operands that satisfy
LEGITIMATE_PIC_OPERAND_P.

From-SVN: r172920
parent 8179f674
2011-04-24 Richard Sandiford <richard.sandiford@linaro.org>
PR target/43804
* config/m68k/constraints.md (T): Allow PIC operands that satisfy
LEGITIMATE_PIC_OPERAND_P.
2011-04-24 Jan Hubicka <jh@suse.cz> 2011-04-24 Jan Hubicka <jh@suse.cz>
* ipa-prop.c (ipa_propagate_indirect_call_infos): Remove obsolette * ipa-prop.c (ipa_propagate_indirect_call_infos): Remove obsolette
......
...@@ -94,7 +94,8 @@ ...@@ -94,7 +94,8 @@
(define_constraint "T" (define_constraint "T"
"Used for operands that satisfy 's' when -mpcrel is not in effect." "Used for operands that satisfy 's' when -mpcrel is not in effect."
(and (match_code "symbol_ref,label_ref,const") (and (match_code "symbol_ref,label_ref,const")
(match_test "!flag_pic"))) (match_test "!TARGET_PCREL")
(match_test "!flag_pic || LEGITIMATE_PIC_OPERAND_P (op)")))
(define_memory_constraint "Q" (define_memory_constraint "Q"
"Means address register indirect addressing mode." "Means address register indirect addressing mode."
......
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