hotspot/src/share/vm/runtime/simpleThresholdPolicy.cpp
changeset 46630 75aa3e39d02c
parent 42650 1f304d0c888b
child 46727 6e4a84748e2c
equal deleted inserted replaced
46629:8eeacdc76bf2 46630:75aa3e39d02c
     1 /*
     1 /*
     2  * Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2010, 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.
   378             next_level = CompLevel_full_optimization;
   378             next_level = CompLevel_full_optimization;
   379           }
   379           }
   380         }
   380         }
   381       }
   381       }
   382       break;
   382       break;
       
   383     default:
       
   384       break;
   383     }
   385     }
   384   }
   386   }
   385   return MIN2(next_level, (CompLevel)TieredStopAtLevel);
   387   return MIN2(next_level, (CompLevel)TieredStopAtLevel);
   386 }
   388 }
   387 
   389