Skip to content

Commit ca9c84d

Browse files
author
duke
committedMay 21, 2024
Automatic merge of jdk:master into master
2 parents 6ea15ef + 8a49d47 commit ca9c84d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎src/hotspot/share/c1/c1_ValueStack.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -38,6 +38,7 @@ ValueStack::ValueStack(IRScope* scope, ValueStack* caller_state)
3838
, _locals(scope->method()->max_locals(), scope->method()->max_locals(), nullptr)
3939
, _stack(scope->method()->max_stack())
4040
, _locks(nullptr)
41+
, _force_reexecute(false)
4142
{
4243
verify();
4344
}
@@ -50,6 +51,7 @@ ValueStack::ValueStack(ValueStack* copy_from, Kind kind, int bci)
5051
, _locals(copy_from->locals_size_for_copy(kind))
5152
, _stack(copy_from->stack_size_for_copy(kind))
5253
, _locks(copy_from->locks_size() == 0 ? nullptr : new Values(copy_from->locks_size()))
54+
, _force_reexecute(false)
5355
{
5456
switch (kind) {
5557
case EmptyExceptionState:

0 commit comments

Comments
 (0)
Failed to load comments.