diff options
Diffstat (limited to 'test/497-inlining-and-class-loader/src')
-rw-r--r-- | test/497-inlining-and-class-loader/src/Level1.java | 27 | ||||
-rw-r--r-- | test/497-inlining-and-class-loader/src/Main.java | 12 |
2 files changed, 27 insertions, 12 deletions
diff --git a/test/497-inlining-and-class-loader/src/Level1.java b/test/497-inlining-and-class-loader/src/Level1.java new file mode 100644 index 0000000000..977af8321e --- /dev/null +++ b/test/497-inlining-and-class-loader/src/Level1.java @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +public class Level1 { + public static void $inline$bar() { + Level2.$inline$bar(); + } +} + +class Level2 { + public static void $inline$bar() { + Main.$noinline$bar(); + } +} diff --git a/test/497-inlining-and-class-loader/src/Main.java b/test/497-inlining-and-class-loader/src/Main.java index bb8da6d3a0..0f7eb599cb 100644 --- a/test/497-inlining-and-class-loader/src/Main.java +++ b/test/497-inlining-and-class-loader/src/Main.java @@ -77,18 +77,6 @@ class MyClassLoader extends ClassLoader { } } -class Level1 { - public static void $inline$bar() { - Level2.$inline$bar(); - } -} - -class Level2 { - public static void $inline$bar() { - Main.$noinline$bar(); - } -} - class LoadedByMyClassLoader { public static void bar() { Level1.$inline$bar(); |