Fix mips build error.
* mips.c (override_options): Replace word_mode with explicit TARGET_64BIT check. From-SVN: r20428
This commit is contained in:
parent
ecb75b7ab9
commit
45cc4c096a
@ -1,3 +1,8 @@
|
||||
Thu Jun 11 12:40:27 1998 Jim Wilson <wilson@cygnus.com>
|
||||
|
||||
* mips.c (override_options): Replace word_mode with explicit
|
||||
TARGET_64BIT check.
|
||||
|
||||
Thu Jun 11 14:50:02 1998 Michael Meissner <meissner@cygnus.com>
|
||||
|
||||
* regmove.c (regmove_optimize): If we can't replace the
|
||||
|
@ -4451,8 +4451,9 @@ override_options ()
|
||||
}
|
||||
}
|
||||
|
||||
/* Save GPR registers in word_mode sized hunks. */
|
||||
gpr_mode = word_mode;
|
||||
/* Save GPR registers in word_mode sized hunks. word_mode hasn't been
|
||||
initialized yet, so we can't use that here. */
|
||||
gpr_mode = TARGET_64BIT ? DImode : SImode;
|
||||
}
|
||||
|
||||
/* On the mips16, we want to allocate $24 (T_REG) before other
|
||||
|
Loading…
Reference in New Issue
Block a user