--- old/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/GraalHotSpotVMConfigBase.java 2020-05-20 18:03:28.890084625 -0700 +++ new/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/GraalHotSpotVMConfigBase.java 2020-05-20 18:03:28.498077098 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 2020, 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 @@ -103,9 +103,6 @@ case "Linux": osName = "linux"; break; - case "SunOS": - osName = "solaris"; - break; case "Mac OS X": osName = "bsd"; break; @@ -126,9 +123,6 @@ case "x86_64": arch = "amd64"; break; - case "sparcv9": - arch = "sparc"; - break; } return arch; }