hotspot/src/share/vm/opto/loopPredicate.cpp
changeset 24424 2658d7834c6e
parent 23528 8f1a7f5e8066
child 24923 9631f7d691dc
equal deleted inserted replaced
24358:8528b67f6562 24424:2658d7834c6e
     1 /*
     1 /*
     2  * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2011, 2014, 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.
   637   BoolNode* bol = new (C) BoolNode(cmp, BoolTest::lt);
   637   BoolNode* bol = new (C) BoolNode(cmp, BoolTest::lt);
   638   register_new_node(bol, ctrl);
   638   register_new_node(bol, ctrl);
   639 
   639 
   640   if (TraceLoopPredicate) {
   640   if (TraceLoopPredicate) {
   641     predString->print_cr("<u range");
   641     predString->print_cr("<u range");
   642     tty->print(predString->as_string());
   642     tty->print("%s", predString->as_string());
   643   }
   643   }
   644   return bol;
   644   return bol;
   645 }
   645 }
   646 
   646 
   647 //------------------------------ loop_predication_impl--------------------------
   647 //------------------------------ loop_predication_impl--------------------------