diff src/cpu/sparc/vm/compiledIC_sparc.cpp @ 22299:c28cb37b2e1d

Rename JVMCI to INCLUDE_JVMCI.
author twisti
date Wed, 22 Jul 2015 08:56:03 -0700
parents be896a1983c0
children
line wrap: on
line diff
--- a/src/cpu/sparc/vm/compiledIC_sparc.cpp	Wed Jul 22 15:50:08 2015 +0200
+++ b/src/cpu/sparc/vm/compiledIC_sparc.cpp	Wed Jul 22 08:56:03 2015 -0700
@@ -102,7 +102,7 @@
 
 void CompiledStaticCall::set_to_interpreted(methodHandle callee, address entry) {
   address stub = find_stub();
-#ifdef JVMCI
+#if INCLUDE_JVMCI
   if (stub == NULL) {
     set_destination_mt_safe(entry);
     return;
@@ -159,7 +159,7 @@
 
   // Verify stub.
   address stub = find_stub();
-#ifndef JVMCI
+#if !INCLUDE_JVMCI
   assert(stub != NULL, "no stub found for static call");
   // Creation also verifies the object.
   NativeMovConstReg* method_holder = nativeMovConstReg_at(stub);