< prev index next >

src/share/vm/jvmci/commandLineFlagConstraintsJVMCI.cpp

Print this page

        

*** 26,51 **** #include "jvmci/commandLineFlagConstraintsJVMCI.hpp" #include "runtime/arguments.hpp" #include "runtime/globals.hpp" #include "utilities/defaultStream.hpp" - Flag::Error EnableJVMCIMustBeEnabledConstraintFunc(bool value, bool verbose) { - if (!EnableJVMCI) { - if (verbose == true) { - jio_fprintf(defaultStream::error_stream(), "EnableJVMCI must be enabled\n"); - } - return Flag::VIOLATES_CONSTRAINT; - } else { - return Flag::SUCCESS; - } - } - - Flag::Error EnableJVMCIMustBeEnabledConstraintFunc(intx value, bool verbose) { - if (!EnableJVMCI) { - if (verbose == true) { - jio_fprintf(defaultStream::error_stream(), "EnableJVMCI must be enabled\n"); - } - return Flag::VIOLATES_CONSTRAINT; - } else { - return Flag::SUCCESS; - } - } --- 26,30 ----
< prev index next >