* ehopt.c (check_eh_frame): For aug_size == 0
in state_seeing_aug_size state skip the state_skipping_aug state.
This commit is contained in:
parent
517ed4859c
commit
e5f08f7e33
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2003-04-18 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* ehopt.c (check_eh_frame): For aug_size == 0
|
||||||
|
in state_seeing_aug_size state skip the state_skipping_aug
|
||||||
|
state.
|
||||||
|
|
||||||
2003-04-15 Rohit Kumar Srivastava <rohits@kpitcummins.com>
|
2003-04-15 Rohit Kumar Srivastava <rohits@kpitcummins.com>
|
||||||
|
|
||||||
* doc/c-h8300.texi: Replace occurrances of 'Hitachi' with
|
* doc/c-h8300.texi: Replace occurrances of 'Hitachi' with
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* ehopt.c--optimize gcc exception frame information.
|
/* ehopt.c--optimize gcc exception frame information.
|
||||||
Copyright 1998, 2000, 2001 Free Software Foundation, Inc.
|
Copyright 1998, 2000, 2001, 2003 Free Software Foundation, Inc.
|
||||||
Written by Ian Lance Taylor <ian@cygnus.com>.
|
Written by Ian Lance Taylor <ian@cygnus.com>.
|
||||||
|
|
||||||
This file is part of GAS, the GNU Assembler.
|
This file is part of GAS, the GNU Assembler.
|
||||||
|
@ -363,6 +363,8 @@ check_eh_frame (exp, pnbytes)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
d->state = state_error;
|
d->state = state_error;
|
||||||
|
if (d->state == state_skipping_aug && d->aug_size == 0)
|
||||||
|
d->state = state_wait_loc4;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case state_skipping_aug:
|
case state_skipping_aug:
|
||||||
|
|
Loading…
Reference in a new issue