Skip to content

Commit

Permalink
8293531: C2: some vectorapi tests fail assert "Not monotonic" with fl…
Browse files Browse the repository at this point in the history
…ag -XX:TypeProfileLevel=222

Reviewed-by: kvn
  • Loading branch information
Jatin Bhateja committed Oct 14, 2022
1 parent 2e2a51e commit 0043d58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/share/opto/phaseX.cpp
Expand Up @@ -1748,7 +1748,7 @@ PhaseCCP::~PhaseCCP() {

#ifdef ASSERT
static bool ccp_type_widens(const Type* t, const Type* t0) {
assert(t->meet(t0) == t, "Not monotonic");
assert(t->meet(t0) == t->remove_speculative(), "Not monotonic");
switch (t->base() == t0->base() ? t->base() : Type::Top) {
case Type::Int:
assert(t0->isa_int()->_widen <= t->isa_int()->_widen, "widen increases");
Expand Down

0 comments on commit 0043d58

Please sign in to comment.