Commit bfb31c3d by Hans-Peter Nilsson Committed by Hans-Peter Nilsson

cris.c (cris_preferred_minimum_alignment): Fix name typo.

	* config/cris/cris.c (cris_preferred_minimum_alignment): Fix name
	typo.

From-SVN: r268760
parent 8d75ab4d
2019-02-11 Hans-Peter Nilsson <hp@axis.com>
* config/cris/cris.c (cris_preferred_minimum_alignment): Fix name
typo.
2019-02-10 H.J. Lu <hongjiu.lu@intel.com> 2019-02-10 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/constraints.md (Yd): Replace AVX512BW with AVX512DQ * config/i386/constraints.md (Yd): Replace AVX512BW with AVX512DQ
......
...@@ -4340,7 +4340,7 @@ cris_hard_regno_mode_ok (unsigned int regno, machine_mode mode) ...@@ -4340,7 +4340,7 @@ cris_hard_regno_mode_ok (unsigned int regno, machine_mode mode)
/* Return the preferred minimum alignment for a static object. */ /* Return the preferred minimum alignment for a static object. */
static HOST_WIDE_INT static HOST_WIDE_INT
cris_preferred_mininum_alignment (void) cris_preferred_minimum_alignment (void)
{ {
if (!TARGET_CONST_ALIGN) if (!TARGET_CONST_ALIGN)
return 8; return 8;
...@@ -4354,7 +4354,7 @@ cris_preferred_mininum_alignment (void) ...@@ -4354,7 +4354,7 @@ cris_preferred_mininum_alignment (void)
static HOST_WIDE_INT static HOST_WIDE_INT
cris_static_rtx_alignment (machine_mode mode) cris_static_rtx_alignment (machine_mode mode)
{ {
return MAX (cris_preferred_mininum_alignment (), GET_MODE_ALIGNMENT (mode)); return MAX (cris_preferred_minimum_alignment (), GET_MODE_ALIGNMENT (mode));
} }
/* Implement TARGET_CONSTANT_ALIGNMENT. Note that this hook has the /* Implement TARGET_CONSTANT_ALIGNMENT. Note that this hook has the
...@@ -4367,7 +4367,7 @@ cris_static_rtx_alignment (machine_mode mode) ...@@ -4367,7 +4367,7 @@ cris_static_rtx_alignment (machine_mode mode)
static HOST_WIDE_INT static HOST_WIDE_INT
cris_constant_alignment (const_tree, HOST_WIDE_INT basic_align) cris_constant_alignment (const_tree, HOST_WIDE_INT basic_align)
{ {
return MAX (cris_preferred_mininum_alignment (), basic_align); return MAX (cris_preferred_minimum_alignment (), basic_align);
} }
#if 0 #if 0
......
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