diff src/share/vm/opto/parse3.cpp @ 3901:aa67216400d3

7085404: JSR 292: VolatileCallSites should have push notification too Reviewed-by: never, kvn
author twisti
date Fri, 02 Sep 2011 00:36:18 -0700
parents fdb992d83a87
children 11a4af030e4b
line wrap: on
line diff
--- a/src/share/vm/opto/parse3.cpp	Thu Sep 01 01:31:25 2011 -0700
+++ b/src/share/vm/opto/parse3.cpp	Fri Sep 02 00:36:18 2011 -0700
@@ -100,11 +100,11 @@
     }
   }
 
-  // Deoptimize on putfield writes to CallSite.target
+  // Deoptimize on putfield writes to call site target field.
   if (!is_get && field->is_call_site_target()) {
     uncommon_trap(Deoptimization::Reason_unhandled,
                   Deoptimization::Action_reinterpret,
-                  NULL, "put to CallSite.target field");
+                  NULL, "put to call site target field");
     return;
   }