Commit bf76bb5a by Doug Evans

#include regs.h.

#include regs.h.
(use_regs): Use reg_raw_mode.

From-SVN: r7085
parent a021f58a
...@@ -24,6 +24,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ ...@@ -24,6 +24,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "tree.h" #include "tree.h"
#include "obstack.h" #include "obstack.h"
#include "flags.h" #include "flags.h"
#include "regs.h"
#include "function.h" #include "function.h"
#include "insn-flags.h" #include "insn-flags.h"
#include "insn-codes.h" #include "insn-codes.h"
...@@ -1671,7 +1672,7 @@ use_regs (regno, nregs) ...@@ -1671,7 +1672,7 @@ use_regs (regno, nregs)
int i; int i;
for (i = 0; i < nregs; i++) for (i = 0; i < nregs; i++)
emit_insn (gen_rtx (USE, VOIDmode, gen_rtx (REG, word_mode, regno + i))); emit_insn (gen_rtx (USE, VOIDmode, gen_rtx (REG, reg_raw_mode[regno + i], regno + i)));
} }
/* Write zeros through the storage of OBJECT. /* Write zeros through the storage of OBJECT.
......
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