< prev index next >

src/share/vm/runtime/commandLineFlagConstraintsCompiler.cpp

Print this page

        

*** 27,44 **** #include "runtime/commandLineFlagConstraintsCompiler.hpp" #include "runtime/globals.hpp" #include "utilities/defaultStream.hpp" Flag::Error AliasLevelConstraintFunc(bool verbose, intx* value) { - if (CommandLineFlags::finishedInitializing() == true) { if ((*value <= 1) && (Arguments::mode() == Arguments::_comp)) { if (verbose == true) { jio_fprintf(defaultStream::error_stream(), "AliasLevel (" INTX_FORMAT ") is not compatible " "with -Xcomp \n", *value); } return Flag::VIOLATES_CONSTRAINT; ! } ! } return Flag::SUCCESS; } --- 27,43 ---- #include "runtime/commandLineFlagConstraintsCompiler.hpp" #include "runtime/globals.hpp" #include "utilities/defaultStream.hpp" Flag::Error AliasLevelConstraintFunc(bool verbose, intx* value) { if ((*value <= 1) && (Arguments::mode() == Arguments::_comp)) { if (verbose == true) { jio_fprintf(defaultStream::error_stream(), "AliasLevel (" INTX_FORMAT ") is not compatible " "with -Xcomp \n", *value); } return Flag::VIOLATES_CONSTRAINT; ! } else { return Flag::SUCCESS; + } }
< prev index next >