]> gcc.gnu.org Git - gcc.git/commitdiff
* config/h8300/h8300.md (movsi_h8300hs): Make it 64-bit safe.
authorKazu Hirata <kazu@hxi.com>
Wed, 29 Aug 2001 18:21:07 +0000 (18:21 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Wed, 29 Aug 2001 18:21:07 +0000 (18:21 +0000)
From-SVN: r45273

gcc/ChangeLog
gcc/config/h8300/h8300.md

index ffc4ad598b90f51c1f30673a7dbf9aaf864f0c08..3094a9e947bafe9ba10470e375211992e101d99e 100644 (file)
@@ -1,3 +1,7 @@
+2001-08-29  Kazu Hirata  <kazu@hxi.com>
+
+       * config/h8300/h8300.md (movsi_h8300hs): Make it 64-bit safe.
+
 2001-08-29  Kazu Hirata  <kazu@hxi.com>
 
        * config/h8300/h8300-protos.h: Add a prototype for
index d9d549673a9ed80810bfaa161dfe08f787c623f8..67b5a61f26dfa7616e4284d983d68ee87120b45b 100644 (file)
 
          /* Look for constants that can be obtained by subs, inc, and
              dec to 0.  */
-         switch (val)
+         switch (val & 0xffffffff)
            {
            case 0xffffffff:
              return \"sub.l\\t%S0,%S0\;subs\\t#1,%S0\";
This page took 0.069356 seconds and 5 git commands to generate.