From: schwab Date: Sun, 24 Apr 2011 20:04:24 +0000 (+0000) Subject: Author: Richard Sandiford X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=58ba8f5d02eea2498cd9b1404a2f95d94a4fde2d;p=thirdparty%2Fgcc.git Author: Richard Sandiford PR target/43804 * gcc/config/m68k/constraints.md (T): Allow PIC operands that satisfy LEGITIMATE_PIC_OPERAND_P. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@172920 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3a7ebf0e4242..505d7437cd93 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2011-04-24 Richard Sandiford + + PR target/43804 + * config/m68k/constraints.md (T): Allow PIC operands that satisfy + LEGITIMATE_PIC_OPERAND_P. + 2011-04-24 Jan Hubicka * ipa-prop.c (ipa_propagate_indirect_call_infos): Remove obsolette diff --git a/gcc/config/m68k/constraints.md b/gcc/config/m68k/constraints.md index a4885cda6ca5..0fb30078d667 100644 --- a/gcc/config/m68k/constraints.md +++ b/gcc/config/m68k/constraints.md @@ -94,7 +94,8 @@ (define_constraint "T" "Used for operands that satisfy 's' when -mpcrel is not in effect." (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" "Means address register indirect addressing mode."