src/java.base/share/native/libjli/java.c
changeset 55193 5f9ef936707c
parent 55189 fdaf7287ea3a
parent 55080 ef713640430e
child 58280 ef8c8cf9256a
equal deleted inserted replaced
55192:26dd6fdc4165 55193:5f9ef936707c
  1428         } else if (JLI_StrCmp(arg, "-debug") == 0) {
  1428         } else if (JLI_StrCmp(arg, "-debug") == 0) {
  1429             AddOption("-Xdebug", NULL);
  1429             AddOption("-Xdebug", NULL);
  1430         } else if (JLI_StrCmp(arg, "-noclassgc") == 0) {
  1430         } else if (JLI_StrCmp(arg, "-noclassgc") == 0) {
  1431             AddOption("-Xnoclassgc", NULL);
  1431             AddOption("-Xnoclassgc", NULL);
  1432         } else if (JLI_StrCmp(arg, "-Xfuture") == 0) {
  1432         } else if (JLI_StrCmp(arg, "-Xfuture") == 0) {
       
  1433             JLI_ReportErrorMessage(ARG_DEPRECATED, "-Xfuture");
  1433             AddOption("-Xverify:all", NULL);
  1434             AddOption("-Xverify:all", NULL);
  1434         } else if (JLI_StrCmp(arg, "-verify") == 0) {
  1435         } else if (JLI_StrCmp(arg, "-verify") == 0) {
  1435             AddOption("-Xverify:all", NULL);
  1436             AddOption("-Xverify:all", NULL);
  1436         } else if (JLI_StrCmp(arg, "-verifyremote") == 0) {
  1437         } else if (JLI_StrCmp(arg, "-verifyremote") == 0) {
  1437             AddOption("-Xverify:remote", NULL);
  1438             AddOption("-Xverify:remote", NULL);
  1438         } else if (JLI_StrCmp(arg, "-noverify") == 0) {
  1439         } else if (JLI_StrCmp(arg, "-noverify") == 0) {
       
  1440             /*
       
  1441              * Note that no 'deprecated' message is needed here because the VM
       
  1442              * issues 'deprecated' messages for -noverify and -Xverify:none.
       
  1443              */
  1439             AddOption("-Xverify:none", NULL);
  1444             AddOption("-Xverify:none", NULL);
  1440         } else if (JLI_StrCCmp(arg, "-ss") == 0 ||
  1445         } else if (JLI_StrCCmp(arg, "-ss") == 0 ||
  1441                    JLI_StrCCmp(arg, "-oss") == 0 ||
  1446                    JLI_StrCCmp(arg, "-oss") == 0 ||
  1442                    JLI_StrCCmp(arg, "-ms") == 0 ||
  1447                    JLI_StrCCmp(arg, "-ms") == 0 ||
  1443                    JLI_StrCCmp(arg, "-mx") == 0) {
  1448                    JLI_StrCCmp(arg, "-mx") == 0) {