diff options
author | Jeff Law <law@gcc.gnu.org> | 1998-11-04 13:45:01 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-11-04 13:45:01 -0700 |
commit | 0ea0e8717d8def2eea263fce29e17122b36710dc (patch) | |
tree | d05741ff7e3c7d566d5678881c6019c9104e1415 /gcc/rtl.h | |
parent | 09d33be8d3c079899265ad992a64c696df44d438 (diff) | |
download | gcc-0ea0e8717d8def2eea263fce29e17122b36710dc.zip gcc-0ea0e8717d8def2eea263fce29e17122b36710dc.tar.gz gcc-0ea0e8717d8def2eea263fce29e17122b36710dc.tar.bz2 |
rtl.h (flow2_completed): Declare.
�
* rtl.h (flow2_completed): Declare.
* flow.c (flow2_completed): Definition.
* toplev.c (rest_of_compilation): Set and clear flow2_completed
as necessary.
From-SVN: r23527
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1186,8 +1186,12 @@ extern union tree_node *make_tree PROTO((union tree_node *, rtx)); #define STORE_FLAG_VALUE 1 #endif +/* Nonzero after the second flow pass has completed. + Set to 1 or 0 by toplev.c */ +extern int flow2_completed; + /* Nonzero after end of reload pass. - Set to 1 or 0 by toplev.c. */ + Set to 1 or 0 by reload1.c. */ extern int reload_completed; |