hotspot/src/share/vm/runtime/reflection.cpp
changeset 17861 8f14da01157d
parent 17860 1ad3f2d9b4eb
child 17863 d77007cf03c1
equal deleted inserted replaced
17860:1ad3f2d9b4eb 17861:8f14da01157d
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
   373       }
   373       }
   374       dim += k_dim;
   374       dim += k_dim;
   375     }
   375     }
   376   }
   376   }
   377   klass = klass->array_klass(dim, CHECK_NULL);
   377   klass = klass->array_klass(dim, CHECK_NULL);
   378   oop obj = ArrayKlass::cast(klass)->multi_allocate(len, dimensions, THREAD);
   378   oop obj = ArrayKlass::cast(klass)->multi_allocate(len, dimensions, CHECK_NULL);
   379   assert(obj->is_array(), "just checking");
   379   assert(obj->is_array(), "just checking");
   380   return arrayOop(obj);
   380   return arrayOop(obj);
   381 }
   381 }
   382 
   382 
   383 
   383