We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cea147b commit e477d84Copy full SHA for e477d84
src/hotspot/share/code/compiledIC.hpp
@@ -192,13 +192,13 @@ class CompiledDirectCall : public ResourceObj {
192
193
static inline CompiledDirectCall* before(address return_addr) {
194
CompiledDirectCall* st = new CompiledDirectCall(nativeCall_before(return_addr));
195
- st->verify();
+ if (VerifyInlineCaches) st->verify();
196
return st;
197
}
198
199
static inline CompiledDirectCall* at(address native_call) {
200
CompiledDirectCall* st = new CompiledDirectCall(nativeCall_at(native_call));
201
202
203
204
0 commit comments