8252136: Several methods in hotspot are missing "static"

Reviewed-by: coleenp, stefank, kvn, kbarrett
This commit is contained in:
Magnus Ihse Bursie 2024-02-14 16:29:58 +00:00
parent f6e285103a
commit 09d4936657
71 changed files with 227 additions and 220 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2018, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -28,7 +28,7 @@
static unsigned char memory[32];
oop fake_object() {
static oop fake_object() {
return cast_to_oop(memory);
}