diff options
author | 2015-06-15 13:58:00 +0100 | |
---|---|---|
committer | 2015-06-15 14:00:26 +0100 | |
commit | a1924e7042bafdc23a62994f5749e651e35038da (patch) | |
tree | f22aa817edf01968e23eff9df6f78d673cc5ad50 /test/497-inlining-and-class-loader/src/Main.java | |
parent | c4977a58b1feca22a83fd5239aa266c7ce16ab87 (diff) |
Move Level1 to its own file.
When we don't have oat files, we use runtime semantics
for checking access. At runtime, we're checking whether
the class loader is the same between two classes. This is
information we don't have when we run dex2oat at install time.
So movining Level1 to a public class fixes the access issue
when running the test with --no-prebuild --no-dex2oat.
Change-Id: Ied1f33a9e651f0045501c939eaf94b7b34ba1e66
Diffstat (limited to 'test/497-inlining-and-class-loader/src/Main.java')
-rw-r--r-- | test/497-inlining-and-class-loader/src/Main.java | 12 |
1 files changed, 0 insertions, 12 deletions
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(); |