OSDN Git Service

* ggc-common.c (ggc_rlimit_bound): Don't check RSS limit.
[pf3gnuchains/gcc-fork.git] / gcc / tree-pass.h
index 1edff2d..2bf63ee 100644 (file)
@@ -50,7 +50,7 @@ struct tree_opt_pass
   struct tree_opt_pass *next;
 
   /* Static pass number, used as a fragment of the dump file name.  */
-  unsigned int static_pass_number;
+  int static_pass_number;
 
   /* The timevar id associated with this pass.  */
   /* ??? Ideally would be dynamically assigned.  */
@@ -76,6 +76,7 @@ struct tree_opt_pass
 #define PROP_ssa               (1 << 6)
 #define PROP_no_crit_edges      (1 << 7)
 #define PROP_rtl               (1 << 8)
+#define PROP_alias             (1 << 9)
 
 #define PROP_trees \
   (PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh)