comparison src/share/vm/graal/graalRuntime.hpp @ 6559:d5f7e737827f

fixed compilation issues on Solaris. When using SunStudio compiler, Solaris build with DONT_USE_PRECOMPILED_HEADER
author Laurent Daynes <Laurent.Daynes@oracle.com>
date Fri, 19 Oct 2012 11:30:06 +0200
parents 120820e30baa
children 1baf7f1e3f23
comparison
equal deleted inserted replaced
6558:0a6d8857306d 6559:d5f7e737827f
22 */ 22 */
23 23
24 #ifndef SHARE_VM_GRAAL_GRAAL_RUNTIME_HPP 24 #ifndef SHARE_VM_GRAAL_GRAAL_RUNTIME_HPP
25 #define SHARE_VM_GRAAL_GRAAL_RUNTIME_HPP 25 #define SHARE_VM_GRAAL_GRAAL_RUNTIME_HPP
26 26
27 class GraalRuntime : public AllStatic {
28
29 private:
30 jobject _runtimeObject;
31
32 public:
33 static jobject instance() { return _runtimeObject; }
34
35 };
36
37 #endif // SHARE_VM_GRAAL_GRAAL_RUNTIME_HPP 27 #endif // SHARE_VM_GRAAL_GRAAL_RUNTIME_HPP