OSDN Git Service

PR target/24954
authoramodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 22 Nov 2005 14:23:01 +0000 (14:23 +0000)
committeramodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 22 Nov 2005 14:23:01 +0000 (14:23 +0000)
* config/rs6000/predicates.md (easy_vector_constant_add_self): Fix
typo last change.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@107359 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/rs6000/predicates.md

index c4ee188..b58ebdb 100644 (file)
@@ -1,3 +1,9 @@
+2005-11-23  Alan Modra  <amodra@bigpond.net.au>
+
+       PR target/24954
+       * config/rs6000/predicates.md (easy_vector_constant_add_self): Fix
+       typo last change.
+
 2005-11-22  Alan Modra  <amodra@bigpond.net.au>
 
        PR middle-end/24950
index b940261..2b0716e 100644 (file)
            (match_test "easy_altivec_constant (op, mode)")))
 {
   rtx last = CONST_VECTOR_ELT (op, GET_MODE_NUNITS (mode) - 1);
-  HOST_WIDE_INT val = ((INTVAL (last) & 0xff) ^ 0x7f) - 0x7f;
+  HOST_WIDE_INT val = ((INTVAL (last) & 0xff) ^ 0x80) - 0x80;
   return EASY_VECTOR_15_ADD_SELF (val);
 })