diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index fd8a0b67fb52916efed17fa6340553245ef70872..53ea5490a518745832350cab1a52bd8746484918 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -14,7 +14,6 @@ Sat Dec 18 16:28:43 1999  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
 	* cse.c: Move a comment.
 	* tree.c: Minor reformatting.
 	(int_size_in_bytes): Return -1 if constant overflows.
-	* reload.c (combine_reloads): Do nothing if no output reload
 
 Sat Dec 18 18:30:20 1999  J"orn Rennecke <amylaar@cygnus.co.uk>
 
diff --git a/gcc/reload.c b/gcc/reload.c
index 529a2c6ebb5191905e8de90d5f4c87f627aeb741..bcaef6cf534a472e9913f7ddd5f6a3377c1b8275 100644
--- a/gcc/reload.c
+++ b/gcc/reload.c
@@ -1718,7 +1718,7 @@ combine_reloads ()
      that it does not occur in the output (we already know it isn't an
      earlyclobber.  If this is an asm insn, give up.  */
 
-  if (INSN_CODE (this_insn) == -1 || output_reload == -1)
+  if (INSN_CODE (this_insn) == -1)
     return;
 
   for (i = 1; i < insn_data[INSN_CODE (this_insn)].n_operands; i++)