diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/rtlanal.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 72860ea..fe050c8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2001-09-14 Nick Clifton <nickc@cambridge.redhat.com> + * rtlanal.c (subreg_regno_offset): Add semicolon to end of + invocation of SUBREG_REGNO_OFFSET. + * haifa-sched.c: Fix typo in FSF copyright statement. * sched-deps.c: Fix typo in FSF copyright statement. * sched-ebb.c: Fix typo in FSF copyright statement. diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index 9c8830d..236d9fb 100644 --- a/gcc/rtlanal.c +++ b/gcc/rtlanal.c @@ -2750,7 +2750,7 @@ subreg_regno_offset (xregno, xmode, offset, ymode) /* Check for an override, and use it instead. */ #ifdef SUBREG_REGNO_OFFSET - ret = SUBREG_REGNO_OFFSET (xregno, xmode, offset, ymode) + ret = SUBREG_REGNO_OFFSET (xregno, xmode, offset, ymode); #else if (xregno >= FIRST_PSEUDO_REGISTER) abort (); |