aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-threadbackward.c
diff options
context:
space:
mode:
authorAldy Hernandez <aldyh@redhat.com>2021-10-20 07:15:17 +0200
committerAldy Hernandez <aldyh@redhat.com>2021-10-20 12:22:55 +0200
commit6fca1761a16c68740f875fc487b98b6bde8e9be7 (patch)
tree40e04c923ac43d2105ba189d5f8a3d6dd46257bf /gcc/tree-ssa-threadbackward.c
parent8b7f9c40ef42411b6f51b508d41a580d4682069e (diff)
downloadgcc-6fca1761a16c68740f875fc487b98b6bde8e9be7.zip
gcc-6fca1761a16c68740f875fc487b98b6bde8e9be7.tar.gz
gcc-6fca1761a16c68740f875fc487b98b6bde8e9be7.tar.bz2
Remove unused back_threader destructor.
Tested on x86-64 Linux. gcc/ChangeLog: * tree-ssa-threadbackward.c (back_threader::~back_threader): Remove.
Diffstat (limited to 'gcc/tree-ssa-threadbackward.c')
-rw-r--r--gcc/tree-ssa-threadbackward.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/tree-ssa-threadbackward.c b/gcc/tree-ssa-threadbackward.c
index 96422a1..d94e3b9 100644
--- a/gcc/tree-ssa-threadbackward.c
+++ b/gcc/tree-ssa-threadbackward.c
@@ -76,7 +76,6 @@ class back_threader
{
public:
back_threader (bool speed_p, bool resolve);
- ~back_threader ();
void maybe_thread_block (basic_block bb);
bool thread_through_all_blocks (bool may_peel_loop_headers);
private:
@@ -128,10 +127,6 @@ back_threader::back_threader (bool speed_p, bool resolve)
m_resolve = resolve;
}
-back_threader::~back_threader ()
-{
-}
-
// Register the current path for jump threading if it's profitable to
// do so.
//