Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand All @@ -26,8 +26,7 @@
* @bug 8190797
* @summary Test OSR compilation with bad operand stack.
* @library /test/lib /
* @modules java.base/jdk.internal.misc
* java.management
* @requires vm.flagless
* @compile OSRWithBadOperandStack.jasm
* @run driver compiler.linkage.TestLinkageErrorInGenerateOopMap
*/
Expand All @@ -50,7 +49,7 @@ public static void main(String args[]) throws Exception {
"-XX:CompileCommand=dontinline,compiler/linkage/OSRWithBadOperandStack.m*",
"-XX:-CreateCoredumpOnCrash",
"-Xmx64m",
"compiler.linkage.TestLinkageErrorInGenerateOopMap",
TestLinkageErrorInGenerateOopMap.class.getName(),
"run");
OutputAnalyzer out = new OutputAnalyzer(pb.start());
if (out.getExitValue() != 0) {
Expand Down