From 5de7e417ea1a71086c20f8d15106d3c775966fb3 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Fri, 14 Sep 2001 11:11:01 +0000 Subject: [PATCH] Add missing semicolon From-SVN: r45597 --- gcc/ChangeLog | 3 +++ gcc/rtlanal.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 72860ea2ecf..fe050c8a3ee 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2001-09-14 Nick Clifton + * 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 9c8830d4000..236d9fb2e2d 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 (); -- 2.30.2