hotspot/src/share/vm/ci/ciMethodBlocks.cpp
changeset 46630 75aa3e39d02c
parent 38658 34f9c45625d8
equal deleted inserted replaced
46629:8eeacdc76bf2 46630:75aa3e39d02c
     1 /*
     1 /*
     2  * Copyright (c) 2006, 2011, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2006, 2017, 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.
   242       case Bytecodes::_return      :
   242       case Bytecodes::_return      :
   243         cur_block->set_control_bci(bci);
   243         cur_block->set_control_bci(bci);
   244         if (s.next_bci() < limit_bci) {
   244         if (s.next_bci() < limit_bci) {
   245           (void) make_block_at(s.next_bci());
   245           (void) make_block_at(s.next_bci());
   246         }
   246         }
       
   247         break;
       
   248 
       
   249       default:
   247         break;
   250         break;
   248     }
   251     }
   249   }
   252   }
   250   //  End the last block
   253   //  End the last block
   251   cur_block->set_limit_bci(limit_bci);
   254   cur_block->set_limit_bci(limit_bci);