A small patch

H.J. Lu hjl@lucon.org
Mon Sep 22 16:57:00 GMT 1997


indirect_jump_in_function_p should return something in any case.
I assume 0 is appropriate here. Please double check it.

Thanks.


-- 
H.J. Lu (hjl@gnu.ai.mit.edu)
---
Mon Sep 22 16:54:46 1997  H.J. Lu  (hjl@gnu.ai.mit.edu)

	* loop.c (indirect_jump_in_function_p): Return 0
	by default.

Index: loop.c
===================================================================
RCS file: /home/work/cvs/gnu/egcs/gcc/loop.c,v
retrieving revision 1.1.1.4
diff -u -r1.1.1.4 loop.c
--- loop.c	1997/09/22 23:41:00	1.1.1.4
+++ loop.c	1997/09/22 23:52:34
@@ -7582,5 +7601,7 @@
   for (insn = start; insn; insn = NEXT_INSN (insn))
     if (computed_jump_p (insn))
       return 1;
+
+  return 0;
 }
 /* END CYGNUS LOCAL haifa */



More information about the Gcc mailing list