OSDN Git Service

*** empty log message ***
authorrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 20 May 1992 02:47:28 +0000 (02:47 +0000)
committerrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 20 May 1992 02:47:28 +0000 (02:47 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@1026 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/genattrtab.c

index ffd728d..870635c 100644 (file)
@@ -2263,7 +2263,8 @@ evaluate_eq_attr (exp, value, insn_code, insn_index)
 
   if (address_used)
     {
-      if (! RTX_UNCHANGING_P (exp) && current_alternative_string)
+      /* This had `&& current_alternative_string', which seems to be wrong.  */
+      if (! RTX_UNCHANGING_P (exp))
        return copy_rtx_unchanging (exp);
       return exp;
     }
@@ -2768,7 +2769,7 @@ simplify_test_exp (exp, insn_code, insn_index)
   /* We have already simplified this expression.  Simplifying it again
      won't buy anything unless we weren't given a valid insn code
      to process (i.e., we are canonicalizing something.).  */
-  if (insn_code != -2 && current_alternative_string
+  if (insn_code != -2 /* Seems wrong: && current_alternative_string.  */
       && ! RTX_UNCHANGING_P (newexp))
     return copy_rtx_unchanging (newexp);