re PR target/48288 (ld: Unsatisfied symbol "__iordi3" in file /test/gnu/gcc/objdir...
authorJohn David Anglin <dave.anglin@nrc-cnrc.gc.ca>
Sun, 27 Mar 2011 22:09:36 +0000 (22:09 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Sun, 27 Mar 2011 22:09:36 +0000 (22:09 +0000)
PR target/48288
* config/pa/predicates.md (reg_or_ior_operand): New predicate.
* config/pa/pa.md (iordi3): Use new predicate in expander.
(iorsi3): Likewise.

From-SVN: r171582

gcc/ChangeLog
gcc/config/pa/pa.md
gcc/config/pa/predicates.md

index 159cc114f9c506dc2a278ebe26cb6ba9364420a3..b054e37ab426871fb59898c70830541cde3dd53c 100644 (file)
@@ -1,3 +1,10 @@
+2011-03-27  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
+
+       PR target/48288
+       * config/pa/predicates.md (reg_or_ior_operand): New predicate.
+       * config/pa/pa.md (iordi3): Use new predicate in expander.
+       (iorsi3): Likewise.
+
 2011-03-27  Anatoly Sokolov  <aesok@post.ru>
 
         * config/mips/mips.h (LIBCALL_VALUE, FUNCTION_VALUE,
index 24317a5c4f3b4ff9ef240f3e02d282168b2d73d9..fb507ccfa3ae29a8eb3776564a5c052dd2d31b1e 100644 (file)
 (define_expand "iordi3"
   [(set (match_operand:DI 0 "register_operand" "")
        (ior:DI (match_operand:DI 1 "register_operand" "")
-               (match_operand:DI 2 "ior_operand" "")))]
+               (match_operand:DI 2 "reg_or_ior_operand" "")))]
   ""
   "
 {
 (define_expand "iorsi3"
   [(set (match_operand:SI 0 "register_operand" "")
        (ior:SI (match_operand:SI 1 "register_operand" "")
-               (match_operand:SI 2 "arith32_operand" "")))]
+               (match_operand:SI 2 "reg_or_ior_operand" "")))]
   ""
-  "
-{
-  if (! (ior_operand (operands[2], SImode)
-         || register_operand (operands[2], SImode)))
-    operands[2] = force_reg (SImode, operands[2]);
-}")
+  "")
 
 (define_insn ""
   [(set (match_operand:SI 0 "register_operand" "=r,r")
index 350e42be1032daa148c45416578c15449bdce0cd..78b7915e255f964d45235eaed81dbc1b718d7701 100644 (file)
          || (GET_CODE (op) == CONST_INT && and_mask_p (INTVAL (op))));
 })
 
+;; True iff OP can be used to compute (reg | OP).
+
+(define_predicate "reg_or_ior_operand"
+  (match_code "subreg,reg,const_int")
+{
+  return (register_operand (op, mode)
+         || (GET_CODE (op) == CONST_INT && ior_mask_p (INTVAL (op))));
+})
+
 ;; True iff depi can be used to compute (reg | OP).
 
 (define_predicate "ior_operand"