comparison src/share/vm/runtime/vm_version.cpp @ 4559:723df37192d6

Make it possible again to build a real client libjvm, drop the UseGraal flag. Use the --vm option instead of a special -vm option in the bench command
author Gilles Duboscq <duboscq@ssw.jku.at>
date Fri, 10 Feb 2012 17:04:03 +0100
parents 04b9a2566eec
children 33df1aeaebbf
comparison
equal deleted inserted replaced
4558:3706975946e4 4559:723df37192d6
117 #define VMTYPE "Shark" 117 #define VMTYPE "Shark"
118 #else // SHARK 118 #else // SHARK
119 #define VMTYPE "Zero" 119 #define VMTYPE "Zero"
120 #endif // SHARK 120 #endif // SHARK
121 #else // ZERO 121 #else // ZERO
122 #define VMTYPE COMPILER1_PRESENT("Graal") \ 122 #ifdef GRAAL
123 #define VMTYPE "Graal"
124 #else // GRAAL
125 #define VMTYPE COMPILER1_PRESENT("Client") \
123 COMPILER2_PRESENT("Server") 126 COMPILER2_PRESENT("Server")
127 #endif // GRAAL
124 #endif // ZERO 128 #endif // ZERO
125 #endif // TIERED 129 #endif // TIERED
126 #endif // KERNEL 130 #endif // KERNEL
127 131
128 #ifndef HOTSPOT_VM_DISTRO 132 #ifndef HOTSPOT_VM_DISTRO