comparison src/share/vm/classfile/javaClasses.cpp @ 22298:c28cb37b2e1d

Rename JVMCI to INCLUDE_JVMCI.
author twisti
date Wed, 22 Jul 2015 08:56:03 -0700
parents be896a1983c0
children dd9cc155639c
comparison
equal deleted inserted replaced
22297:571202729bbf 22298:c28cb37b2e1d
561 // it can be held across a java call. 561 // it can be held across a java call.
562 typeArrayOop r = oopFactory::new_typeArray(T_INT, 0, CHECK); 562 typeArrayOop r = oopFactory::new_typeArray(T_INT, 0, CHECK);
563 set_init_lock(mirror(), r); 563 set_init_lock(mirror(), r);
564 564
565 // Set protection domain also 565 // Set protection domain also
566 #ifdef JVMCI 566 #if INCLUDE_JVMCI
567 if (k->class_loader() == SystemDictionary::jvmci_loader()) { 567 if (k->class_loader() == SystemDictionary::jvmci_loader()) {
568 // Same protection domain as for classes loaded by the boot loader 568 // Same protection domain as for classes loaded by the boot loader
569 protection_domain = Handle(); 569 protection_domain = Handle();
570 } 570 }
571 #endif 571 #endif