src/hotspot/share/interpreter/templateInterpreterGenerator.cpp
changeset 50094 2f79462aab9b
parent 49480 d7df2dd501ce
child 51056 3ddf41505d54
--- a/src/hotspot/share/interpreter/templateInterpreterGenerator.cpp	Sat May 12 17:22:56 2018 +0530
+++ b/src/hotspot/share/interpreter/templateInterpreterGenerator.cpp	Mon May 07 09:11:21 2018 +0200
@@ -173,11 +173,11 @@
   }
 
   { CodeletMark cm(_masm, "throw exception entrypoints");
-    Interpreter::_throw_ArrayIndexOutOfBoundsException_entry = generate_ArrayIndexOutOfBounds_handler("java/lang/ArrayIndexOutOfBoundsException");
-    Interpreter::_throw_ArrayStoreException_entry            = generate_klass_exception_handler("java/lang/ArrayStoreException"                 );
-    Interpreter::_throw_ArithmeticException_entry            = generate_exception_handler("java/lang/ArithmeticException"           , "/ by zero");
+    Interpreter::_throw_ArrayIndexOutOfBoundsException_entry = generate_ArrayIndexOutOfBounds_handler();
+    Interpreter::_throw_ArrayStoreException_entry            = generate_klass_exception_handler("java/lang/ArrayStoreException");
+    Interpreter::_throw_ArithmeticException_entry            = generate_exception_handler("java/lang/ArithmeticException", "/ by zero");
     Interpreter::_throw_ClassCastException_entry             = generate_ClassCastException_handler();
-    Interpreter::_throw_NullPointerException_entry           = generate_exception_handler("java/lang/NullPointerException"          , NULL       );
+    Interpreter::_throw_NullPointerException_entry           = generate_exception_handler("java/lang/NullPointerException", NULL);
     Interpreter::_throw_StackOverflowError_entry             = generate_StackOverflowError_handler();
   }