8322858: compiler/c2/aarch64/TestFarJump.java fails on AArch64 due to unexpected PrintAssembly output

Reviewed-by: aph, thartmann
This commit is contained in:
Boris Ulasevich 2024-01-09 10:33:52 +00:00
parent 075fed91bd
commit 52a6c37558

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2022, BELLSOFT. All rights reserved.
* Copyright (c) 2024, BELLSOFT. 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
@ -89,10 +89,9 @@ public class TestFarJump {
"-Xbatch",
"-XX:+TieredCompilation",
"-XX:+SegmentedCodeCache",
"-XX:CompileOnly=" + className + "::main",
"-XX:ReservedCodeCacheSize=" + (bigCodeHeap ? "256M" : "200M"),
"-XX:+UnlockDiagnosticVMOptions",
"-XX:+PrintAssembly",
"-XX:CompileCommand=option," + className + "::main,bool,PrintAssembly,true",
className};
ProcessBuilder pb = ProcessTools.createLimitedTestJavaProcessBuilder(procArgs);