8242896: typo #ifdef INCLUDE_JVMTI in codeCache.cpp

Reviewed-by: dholmes, sspitsyn
This commit is contained in:
Coleen Phillimore 2020-04-17 07:46:17 -04:00
parent 25c70b3bc3
commit 9735678c26
2 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2020, 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
@ -1036,7 +1036,7 @@ bool CodeCache::is_far_target(address target) {
#endif
}
#ifdef INCLUDE_JVMTI
#if INCLUDE_JVMTI
// RedefineClasses support for unloading nmethods that are dependent on "old" methods.
// We don't really expect this table to grow very large. If it does, it can become a hashtable.
static GrowableArray<CompiledMethod*>* old_compiled_method_table = NULL;