Skip to content

Commit dde1cce

Browse files
committed
JDK-8377670: cleanup if
1 parent 8ff58c7 commit dde1cce

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/hotspot/share/runtime/sharedRuntime.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3061,10 +3061,10 @@ void CompiledEntrySignature::initialize_from_fingerprint(AdapterFingerPrint* fin
30613061
assert(InlineTypePassFieldsAsArgs, "unexpected end of inline type");
30623062
value_object_count--;
30633063
SigEntry::add_entry(_sig_cc, T_VOID, nullptr, offset);
3064-
if (skipping_inline_recv && value_object_count == 0) {
3065-
skipping_inline_recv = false;
3066-
} else if (!skipping_inline_recv) {
3064+
if (!skipping_inline_recv) {
30673065
SigEntry::add_entry(_sig_cc_ro, T_VOID, nullptr, offset);
3066+
} else if (value_object_count == 0) {
3067+
skipping_inline_recv = false;
30683068
}
30693069
assert(value_object_count >= 0, "invalid value object count");
30703070
} else {

0 commit comments

Comments
 (0)