8233788: Remove useless asserts in PhaseCFG::insert_anti_dependences

Removed useless asserts.

Reviewed-by: kvn
This commit is contained in:
Tobias Hartmann 2019-11-08 09:16:48 +01:00
parent 61a6ef79ae
commit f225f7cd0b
2 changed files with 2 additions and 12 deletions

View file

@ -1653,6 +1653,7 @@ const TypePtr *Compile::flatten_alias_type( const TypePtr *tj ) const {
}
void Compile::AliasType::Init(int i, const TypePtr* at) {
assert(AliasIdxTop <= i && i < Compile::current()->_max_alias_types, "Invalid alias index");
_index = i;
_adr_type = at;
_field = NULL;