diff src/share/vm/runtime/javaCalls.cpp @ 14909:4ca6dc0799b6

Backout jdk9 merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 13:57:07 +0200
parents 3e9a960f0da1
children 2c940b1a48d8
line wrap: on
line diff
--- a/src/share/vm/runtime/javaCalls.cpp	Tue Apr 01 14:09:03 2014 +0200
+++ b/src/share/vm/runtime/javaCalls.cpp	Tue Apr 01 13:57:07 2014 +0200
@@ -319,7 +319,7 @@
   // Check if we need to wrap a potential OS exception handler around thread
   // This is used for e.g. Win32 structured exception handlers
   assert(THREAD->is_Java_thread(), "only JavaThreads can make JavaCalls");
-  // Need to wrap each and every time, since there might be native code down the
+  // Need to wrap each and everytime, since there might be native code down the
   // stack that has installed its own exception handlers
   os::os_exception_wrapper(call_helper, result, &method, args, THREAD);
 }
@@ -361,7 +361,7 @@
     // A klass might not be initialized since JavaCall's might be used during the executing of
     // the <clinit>. For example, a Thread.start might start executing on an object that is
     // not fully initialized! (bad Java programming style)
-    assert(holder->is_linked(), "rewriting must have taken place");
+    assert(holder->is_linked(), "rewritting must have taken place");
   }
 #endif