comparison src/share/vm/oops/method.cpp @ 22299:c28cb37b2e1d

Rename JVMCI to INCLUDE_JVMCI.
author twisti
date Wed, 22 Jul 2015 08:56:03 -0700
parents be896a1983c0
children
comparison
equal deleted inserted replaced
22298:571202729bbf 22299:c28cb37b2e1d
216 216
217 void Method::mask_for(int bci, InterpreterOopMap* mask) { 217 void Method::mask_for(int bci, InterpreterOopMap* mask) {
218 218
219 Thread* myThread = Thread::current(); 219 Thread* myThread = Thread::current();
220 methodHandle h_this(myThread, this); 220 methodHandle h_this(myThread, this);
221 #if defined(ASSERT) && !defined(JVMCI) 221 #if defined(ASSERT) && !INCLUDE_JVMCI
222 bool has_capability = myThread->is_VM_thread() || 222 bool has_capability = myThread->is_VM_thread() ||
223 myThread->is_ConcurrentGC_thread() || 223 myThread->is_ConcurrentGC_thread() ||
224 myThread->is_GC_task_thread(); 224 myThread->is_GC_task_thread();
225 225
226 if (!has_capability) { 226 if (!has_capability) {