From: Jim Wilson Date: Mon, 25 Jan 1993 19:56:19 +0000 (-0800) Subject: (registers_ok_for_ldd_peep): Delete test for pseudos. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=31aaaec1e3f2bc67fe81d2708aa0c56e74036ee9;p=gcc.git (registers_ok_for_ldd_peep): Delete test for pseudos. From-SVN: r3332 --- diff --git a/gcc/config/sparc/sparc.c b/gcc/config/sparc/sparc.c index 8e1b9a94fcc..bc64f540707 100644 --- a/gcc/config/sparc/sparc.c +++ b/gcc/config/sparc/sparc.c @@ -2563,11 +2563,6 @@ registers_ok_for_ldd_peep (reg1, reg2) if (GET_CODE (reg1) != REG || GET_CODE (reg2) != REG) return 0; - /* Should never happen. */ - if (REGNO (reg1) > FIRST_PSEUDO_REGISTER - || REGNO (reg2) > FIRST_PSEUDO_REGISTER) - abort (); - if (REGNO (reg1) % 2 != 0) return 0;