This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Another obvious IA64 patch


This is another patch related to some recent changes I made.  In one of
my new instructions I used the 'g' constraint instead of 'G'.  This
patch fixes it.  Tested on IA64 HP-UX and Linux and checked in under the
obvious rule.

Steve Ellcey
sje@cup.hp.com


2007-08-06  Steve Ellcey  <sje@cup.hp.com>

	* config/ia64/div.md (m2subrf4_cond): Change 'g' to 'G'.

Index: config/ia64/div.md
===================================================================
--- config/ia64/div.md	(revision 127234)
+++ config/ia64/div.md	(working copy)
@@ -140,10 +140,10 @@ (define_insn "m2subrf4_cond"
         (if_then_else:RF (ne:RF (match_operand:BI 1 "register_operand"  "c,c")
                                 (const_int 0))
           (minus:RF
-            (match_operand:RF 2 "fr_reg_or_fp01_operand" "fg,fG")
+            (match_operand:RF 2 "fr_reg_or_fp01_operand" "fG,fG")
             (mult:RF
-              (match_operand:RF 3 "fr_reg_or_fp01_operand" "fg,fG")
-              (match_operand:RF 4 "fr_reg_or_fp01_operand" "fg,fG")))
+              (match_operand:RF 3 "fr_reg_or_fp01_operand" "fG,fG")
+              (match_operand:RF 4 "fr_reg_or_fp01_operand" "fG,fG")))
           (match_operand:RF 5 "fr_reg_or_0_operand" "0,H")))
    (use (match_operand:SI 6 "const_int_operand" ""))
    (use (match_operand:SI 7 "const_int_operand" ""))]


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]