Commit 7343a5a9 by Jan Hubicka Committed by Jan Hubicka

* i386.md (absdf2 expander): Fix 64bit case.

From-SVN: r40626
parent a8e5b5d9
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).
......
......@@ -7700,7 +7700,7 @@
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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment