From: Richard Kenner Date: Tue, 16 Jan 1996 13:08:21 +0000 (-0500) Subject: (regclass): Remove useless cast. X-Git-Tag: misc/cutover-egcs-0~3030 X-Git-Url: https://gcc.gnu.org/git/?a=commitdiff_plain;h=995d54ddbc5737e5d5158106885f1d87d64299bb;p=gcc.git (regclass): Remove useless cast. From-SVN: r11016 --- diff --git a/gcc/regclass.c b/gcc/regclass.c index 3147ba55fb39..aa8ad8c8975d 100644 --- a/gcc/regclass.c +++ b/gcc/regclass.c @@ -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;