You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: substratevm/src/com.oracle.svm.interpreter/src/com/oracle/svm/interpreter/ristretto/meta/RistrettoMethod.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -100,7 +100,7 @@ public static RistrettoMethod create(InterpreterResolvedJavaMethod interpreterMe
100
100
101
101
publicMethodProfilegetProfile() {
102
102
if (profile == null) {
103
-
initializedProfile();
103
+
initializeProfile();
104
104
}
105
105
returnprofile;
106
106
}
@@ -109,7 +109,7 @@ public MethodProfile getProfile() {
109
109
* Allocate the profile once per method. Apart from test scenarios the profile is never set to
110
110
* null again. Thus, the heavy locking code below is normally not run in a fast path.
111
111
*/
112
-
privatesynchronizedvoidinitializedProfile() {
112
+
privatesynchronizedvoidinitializeProfile() {
113
113
if (profile == null) {
114
114
MethodProfilenewProfile = newMethodProfile(this);
115
115
// ensure everything is allocated and initialized before we signal the barrier
0 commit comments