diff options
Diffstat (limited to 'gcc/stor-layout.c')
-rw-r--r-- | gcc/stor-layout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index 3549f49..a6d4307 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -2793,7 +2793,7 @@ bit_field_mode_iterator::next_mode (scalar_int_mode *out_mode) /* Stop if the mode requires too much alignment. */ if (GET_MODE_ALIGNMENT (mode) > m_align - && SLOW_UNALIGNED_ACCESS (mode, m_align)) + && targetm.slow_unaligned_access (mode, m_align)) break; *out_mode = mode; |