src/hotspot/share/ci/ciEnv.hpp
changeset 52195 f08c1d7a5c53
parent 49480 d7df2dd501ce
child 53244 9807daeb47c4
child 53278 4b469f5f4bf2
--- a/src/hotspot/share/ci/ciEnv.hpp	Thu Oct 18 21:14:49 2018 +0200
+++ b/src/hotspot/share/ci/ciEnv.hpp	Thu Oct 18 23:05:01 2018 -0700
@@ -82,7 +82,7 @@
   // Distinguished instances of certain ciObjects..
   static ciObject*              _null_object_instance;
 
-#define WK_KLASS_DECL(name, ignore_s, ignore_o) static ciInstanceKlass* _##name;
+#define WK_KLASS_DECL(name, ignore_s) static ciInstanceKlass* _##name;
   WK_KLASSES_DO(WK_KLASS_DECL)
 #undef WK_KLASS_DECL
 
@@ -374,7 +374,7 @@
 
 
   // Access to certain well known ciObjects.
-#define WK_KLASS_FUNC(name, ignore_s, ignore_o) \
+#define WK_KLASS_FUNC(name, ignore_s) \
   ciInstanceKlass* name() { \
     return _##name;\
   }