comparison src/share/vm/prims/jvm.cpp @ 22446:252486bf863f

use COMPILERJVMCI instead of INCLUDE_JVMCI when setting compiler name property
author Doug Simon <doug.simon@oracle.com>
date Fri, 21 Aug 2015 11:05:48 +0200
parents c28cb37b2e1d
children dd9cc155639c
comparison
equal deleted inserted replaced
22445:9b106403c2f3 22446:252486bf863f
381 #else 381 #else
382 #if defined(COMPILER1) 382 #if defined(COMPILER1)
383 const char* compiler_name = "HotSpot " CSIZE "Client Compiler"; 383 const char* compiler_name = "HotSpot " CSIZE "Client Compiler";
384 #elif defined(COMPILER2) 384 #elif defined(COMPILER2)
385 const char* compiler_name = "HotSpot " CSIZE "Server Compiler"; 385 const char* compiler_name = "HotSpot " CSIZE "Server Compiler";
386 #elif INCLUDE_JVMCI 386 #elif defined(COMPILERJVMCI)
387 const char* compiler_name = "HotSpot " CSIZE "JVMCI Compiler"; 387 const char* compiler_name = "HotSpot " CSIZE "JVMCI Compiler";
388 #else 388 #else
389 const char* compiler_name = ""; 389 const char* compiler_name = "";
390 #endif // compilers 390 #endif // compilers
391 #endif // TIERED 391 #endif // TIERED