path solver: Remove useless code.

gcc/ChangeLog:

	* gimple-range-path.cc (path_range_query::range_defined_in_block):
	Remove useless code.
This commit is contained in:
Aldy Hernandez 2021-09-21 09:17:57 +02:00
parent f46d33637c
commit 062c8727df

View File

@ -246,10 +246,6 @@ path_range_query::range_defined_in_block (irange &r, tree name, basic_block bb)
fprintf (dump_file, "\n");
}
// We may have an artificial statement not in the IL.
if (!bb && r.varying_p ())
return false;
return true;
}