changeset 21030:c8166c23047d

Remove dead code in graalCodeInstaller.cpp
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Wed, 15 Apr 2015 17:14:56 +0200
parents 3fe33ec624ea
children e1c063565b3c
files src/share/vm/graal/graalCodeInstaller.cpp
diffstat 1 files changed, 0 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/graal/graalCodeInstaller.cpp	Mon Apr 20 16:30:54 2015 +0200
+++ b/src/share/vm/graal/graalCodeInstaller.cpp	Wed Apr 15 17:14:56 2015 +0200
@@ -689,12 +689,6 @@
 }
 
 void CodeInstaller::process_exception_handlers() {
-  // allocate some arrays for use by the collection code.
-  const int num_handlers = 5;
-  GrowableArray<intptr_t>* bcis = new GrowableArray<intptr_t> (num_handlers);
-  GrowableArray<intptr_t>* scope_depths = new GrowableArray<intptr_t> (num_handlers);
-  GrowableArray<intptr_t>* pcos = new GrowableArray<intptr_t> (num_handlers);
-
   if (exception_handlers() != NULL) {
     objArrayOop handlers = exception_handlers();
     for (int i = 0; i < handlers->length(); i++) {