Skip to content

Commit bfb52f2

Browse files
committed
8273547: [11u] [JVMCI] Partial module-info.java backport of JDK-8223332
Reviewed-by: clanger
1 parent 1e6682a commit bfb52f2

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

src/jdk.internal.vm.ci/share/classes/module-info.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -28,6 +28,9 @@
2828
exports jdk.vm.ci.runtime to
2929
jdk.internal.vm.compiler,
3030
jdk.internal.vm.compiler.management;
31+
exports jdk.vm.ci.meta to jdk.internal.vm.compiler;
32+
exports jdk.vm.ci.code to jdk.internal.vm.compiler;
33+
exports jdk.vm.ci.hotspot to jdk.internal.vm.compiler;
3134

3235
uses jdk.vm.ci.services.JVMCIServiceLocator;
3336
uses jdk.vm.ci.hotspot.HotSpotJVMCIBackendFactory;

test/jdk/jdk/modules/etc/JdkQualifiedExportTest.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -71,6 +71,9 @@ static void check(ModuleDescriptor md) {
7171
static Set<String> KNOWN_EXCEPTIONS =
7272
Set.of("jdk.internal.vm.ci/jdk.vm.ci.services",
7373
"jdk.internal.vm.ci/jdk.vm.ci.runtime",
74+
"jdk.internal.vm.ci/jdk.vm.ci.hotspot",
75+
"jdk.internal.vm.ci/jdk.vm.ci.meta",
76+
"jdk.internal.vm.ci/jdk.vm.ci.code",
7477
"jdk.jsobject/jdk.internal.netscape.javascript.spi");
7578

7679
static void checkExports(ModuleDescriptor md) {

0 commit comments

Comments
 (0)