diff options
author | David S. Miller <davem@redhat.com> | 2002-05-23 08:22:05 -0700 |
---|---|---|
committer | David S. Miller <davem@gcc.gnu.org> | 2002-05-23 08:22:05 -0700 |
commit | 9547983155087b81454e9149ad37c2945f8137b9 (patch) | |
tree | 40fccab8e687849f2b4ac8156c613c1dd0531a4a /gcc/basic-block.h | |
parent | a97d1398381199317a5627d7a24e407284ef1e2e (diff) | |
download | gcc-9547983155087b81454e9149ad37c2945f8137b9.zip gcc-9547983155087b81454e9149ad37c2945f8137b9.tar.gz gcc-9547983155087b81454e9149ad37c2945f8137b9.tar.bz2 |
basic-block.h (CLEANUP_NO_INSN_DEL): Define it.
2002-05-23 David S. Miller <davem@redhat.com>
* basic-block.h (CLEANUP_NO_INSN_DEL): Define it.
* cfgcleanup.c (cleanup_cfg): If it is set do not
attempt to delete trivially dead insns.
* except.c (finish_eh_generation): Pass it to cleanup_cfg.
* toplev.c (rest_of_compilation): Document non-trivial aspect
the RTL before optimize_save_area_alloca is run.
From-SVN: r53789
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r-- | gcc/basic-block.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/basic-block.h b/gcc/basic-block.h index cf0d13a..69ec122 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -595,6 +595,8 @@ enum update_life_extent notes. */ #define CLEANUP_UPDATE_LIFE 32 /* Keep life information up to date. */ #define CLEANUP_THREADING 64 /* Do jump threading. */ +#define CLEANUP_NO_INSN_DEL 128 /* Do not try to delete trivially dead + insns. */ /* Flags for loop discovery. */ #define LOOP_TREE 1 /* Build loop hierarchy tree. */ |