]> gcc.gnu.org Git - gcc.git/commitdiff
(regclass): Remove useless cast.
authorRichard Kenner <kenner@gcc.gnu.org>
Tue, 16 Jan 1996 13:08:21 +0000 (08:08 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Tue, 16 Jan 1996 13:08:21 +0000 (08:08 -0500)
From-SVN: r11016

gcc/regclass.c

index 3147ba55fb39da568956795c28ae495cff30423f..aa8ad8c8975d89276af5c2e81de5c14af829e93a 100644 (file)
@@ -1,5 +1,5 @@
 /* Compute register class preferences for pseudo-registers.
-   Copyright (C) 1987, 88, 91, 92, 93, 1994 Free Software Foundation, Inc.
+   Copyright (C) 1987, 88, 91, 92, 93, 94, 1996 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
 
@@ -978,7 +978,7 @@ regclass (f, nregs)
          
          /* If we don't add any classes, nothing to try.  */
          if (alt == best)
-           alt = (int) NO_REGS;
+           alt = NO_REGS;
 
          /* We cast to (int) because (char) hits bugs in some compilers.  */
          prefclass[i] = (int) best;
This page took 0.058797 seconds and 5 git commands to generate.