diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 099d7261bcb..db2574eda78 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-06-05 Kazu Hirata + + * stor-layout.c (debug_rli): Fix a typo in a debug message. + 2006-06-05 Steve Ellcey PR target/27051 diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index c58237f66e6..50068a4349b 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -615,7 +615,7 @@ debug_rli (record_layout_info rli) /* The ms_struct code is the only that uses this. */ if (targetm.ms_bitfield_layout_p (rli->t)) - fprintf (stderr, "remaning in alignment = %u\n", rli->remaining_in_alignment); + fprintf (stderr, "remaining in alignment = %u\n", rli->remaining_in_alignment); if (rli->packed_maybe_necessary) fprintf (stderr, "packed may be necessary\n");