hotspot/src/share/vm/ci/ciEnv.cpp
changeset 40664 1ec65b303bb7
parent 40057 a0511d037cbe
child 46262 83280d968b96
child 43675 a2b322083029
--- a/hotspot/src/share/vm/ci/ciEnv.cpp	Mon Aug 22 15:54:22 2016 +0000
+++ b/hotspot/src/share/vm/ci/ciEnv.cpp	Tue Aug 23 19:21:48 2016 +0200
@@ -1149,10 +1149,10 @@
 
 void ciEnv::report_failure(const char* reason) {
   // Create and fire JFR event
-  EventCompilerFailure event;
+  EventCompilationFailure event;
   if (event.should_commit()) {
-    event.set_compileID(compile_id());
-    event.set_failure(reason);
+    event.set_compileId(compile_id());
+    event.set_failureMessage(reason);
     event.commit();
   }
 }