Commit 4636c0a2 by Andrew MacLeod Committed by Andrew Macleod

expr.c (emit_group_load): Fix typo, GET_MODE not GET_CODE.


2000-06-02  Andrew MacLeod  <amacleod@cygnus.com>

	* expr.c (emit_group_load): Fix typo, GET_MODE not GET_CODE.

From-SVN: r34354
parent 8d867e7d
2000-06-02 Andrew MacLeod <amacleod@cygnus.com>
* expr.c (emit_group_load): Fix typo, GET_MODE not GET_CODE.
Fri Jun 2 00:22:52 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
* sh.h (CPP_SPEC): Add -D__NOMACSAVE__ for -mnomacsave.
......
......@@ -1926,7 +1926,7 @@ emit_group_load (dst, orig_src, ssize, align)
src = orig_src;
if (GET_CODE (src) != MEM)
{
if (GET_CODE (src) == VOIDmode)
if (GET_MODE (src) == VOIDmode)
src = gen_reg_rtx (GET_MODE (dst));
else
src = gen_reg_rtx (GET_MODE (orig_src));
......
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