]> gcc.gnu.org Git - gcc.git/commitdiff
Add missing semicolon
authorNick Clifton <nickc@cambridge.redhat.com>
Fri, 14 Sep 2001 11:11:01 +0000 (11:11 +0000)
committerNick Clifton <nickc@gcc.gnu.org>
Fri, 14 Sep 2001 11:11:01 +0000 (11:11 +0000)
From-SVN: r45597

gcc/ChangeLog
gcc/rtlanal.c

index 72860ea2ecf00bd48e6882ddb3e16fea9e250aa5..fe050c8a3ee21528d1c2e59a6d2731ba8d8b15c6 100644 (file)
@@ -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.
index 9c8830d40007d8dce75536c6cf2c26320246a422..236d9fb2e2d7d93e4f4380239fac1fef1cf1749e 100644 (file)
@@ -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 ();
This page took 0.065015 seconds and 5 git commands to generate.