From: meissner Date: Fri, 5 Jan 2001 22:56:08 +0000 (+0000) Subject: Declare flag_reorder_blocks and flag_rename_registers X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7565f115da99737831081b6c700c215bbdf99f6f;p=thirdparty%2Fgcc.git Declare flag_reorder_blocks and flag_rename_registers git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38728 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 649c3914d9cc..9f8940738f96 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-01-05 Michael Meissner + + * flags.h (flag_reorder_blocks): Add declaration. + (flag_rename_block): Ditto. + 2001-01-05 DJ Delorie * function.c (reorder_blocks): Make sure the flags are all reset diff --git a/gcc/flags.h b/gcc/flags.h index bc686e46e1a0..fc19efe3da49 100644 --- a/gcc/flags.h +++ b/gcc/flags.h @@ -192,6 +192,14 @@ extern int flag_test_coverage; extern int flag_branch_probabilities; +/* Nonzero if basic blocks should be reordered. */ + +extern int flag_reorder_blocks; + +/* Nonzero if registers should be renamed. */ + +extern int flag_rename_registers; + /* Nonzero for -pedantic switch: warn about anything that standard C forbids. */