aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1993-01-25 11:56:19 -0800
committerJim Wilson <wilson@gcc.gnu.org>1993-01-25 11:56:19 -0800
commit31aaaec1e3f2bc67fe81d2708aa0c56e74036ee9 (patch)
tree25691e94493c80eece27efb56870f51cc6b4f3b8 /gcc
parentf2de277562f7c16af3ae0420c0ac3c35fb1f4274 (diff)
downloadgcc-31aaaec1e3f2bc67fe81d2708aa0c56e74036ee9.zip
gcc-31aaaec1e3f2bc67fe81d2708aa0c56e74036ee9.tar.gz
gcc-31aaaec1e3f2bc67fe81d2708aa0c56e74036ee9.tar.bz2
(registers_ok_for_ldd_peep): Delete test for pseudos.
From-SVN: r3332
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/sparc/sparc.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/config/sparc/sparc.c b/gcc/config/sparc/sparc.c
index 8e1b9a9..bc64f54 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;