OSDN Git Service

* i386.md (absdf2 expander): Fix 64bit case.
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 19 Mar 2001 17:56:32 +0000 (17:56 +0000)
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 19 Mar 2001 17:56:32 +0000 (17:56 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40626 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/i386/i386.md

index 6555d86..9f9f628 100644 (file)
@@ -1,3 +1,7 @@
+Mon Mar 19 18:53:54 CET 2001  Jan Hubicka  <jh@suse.cz>
+
+       * i386.md (absdf2 expander): Fix 64bit case.
+
 2001-03-19  Brad Lucier  <lucier@math.purdue.edu>
 
        * Makefile.in: Have splay-tree.o depend on $(GCONFIG_H).
index 1f36c5f..c431e85 100644 (file)
             in register.  */
          rtx reg = gen_reg_rtx (DFmode);
 #if HOST_BITS_PER_WIDE_INT >= 64
-         rtx imm = gen_reg_rtx (GEN_INT (0x80000000));
+         rtx imm = GEN_INT (0x80000000);
 #else
          rtx imm = immed_double_const (0, 0x80000000, DImode);
 #endif