This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] tree-ssa-pre.c: Make has_abnormal_preds static.


Hi,

Attached is a patch to make has_anormal_preds static as it is used
only in tree-ssa-pre.c.

Tested on i686-pc-linux-gnu.  OK to apply?

Kazu Hirata

2005-03-06  Kazu Hirata  <kazu@cs.umass.edu>

	* tree-ssa-pre.c (has_abnormal_preds): Make it static.

Index: tree-ssa-pre.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-ssa-pre.c,v
retrieving revision 2.66
diff -u -d -p -r2.66 tree-ssa-pre.c
--- tree-ssa-pre.c	5 Mar 2005 15:29:25 -0000	2.66
+++ tree-ssa-pre.c	5 Mar 2005 17:04:41 -0000
@@ -1103,7 +1103,7 @@ clean (value_set_t set)
 }
 
 DEF_VEC_MALLOC_P (basic_block);
-sbitmap has_abnormal_preds;
+static sbitmap has_abnormal_preds;
 
 /* Compute the ANTIC set for BLOCK.
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]