summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorNicolas Geoffray <ngeoffray@google.com>2015-06-22 15:11:58 +0100
committerNicolas Geoffray <ngeoffray@google.com>2015-06-22 15:11:58 +0100
commitee39360775066e6b9920348c86ea98bf01d0facf (patch)
tree26f4e8bb3a4702d82383a2df3a741faaa92a9aff /test
parent042fd00295d21f936ba7a8c16915ce678970e658 (diff)
downloadart-ee39360775066e6b9920348c86ea98bf01d0facf.zip
art-ee39360775066e6b9920348c86ea98bf01d0facf.tar.gz
art-ee39360775066e6b9920348c86ea98bf01d0facf.tar.bz2
Revert "Add support for inlining already sharpened interface calls. DO NOT MERGE ANYWHERE"
This reverts commit c362782609ca6fbc355ccc9ea9110fe671db9671. Reverting in order to make a commit that will merge. bug:21867144
Diffstat (limited to 'test')
-rw-r--r--test/492-checker-inline-invoke-interface/expected.txt0
-rw-r--r--test/492-checker-inline-invoke-interface/info.txt1
-rw-r--r--test/492-checker-inline-invoke-interface/src/Main.java29
3 files changed, 0 insertions, 30 deletions
diff --git a/test/492-checker-inline-invoke-interface/expected.txt b/test/492-checker-inline-invoke-interface/expected.txt
deleted file mode 100644
index e69de29..0000000
--- a/test/492-checker-inline-invoke-interface/expected.txt
+++ /dev/null
diff --git a/test/492-checker-inline-invoke-interface/info.txt b/test/492-checker-inline-invoke-interface/info.txt
deleted file mode 100644
index 4a0a5ff..0000000
--- a/test/492-checker-inline-invoke-interface/info.txt
+++ /dev/null
@@ -1 +0,0 @@
-Checker test to ensure we can inline interface calls.
diff --git a/test/492-checker-inline-invoke-interface/src/Main.java b/test/492-checker-inline-invoke-interface/src/Main.java
deleted file mode 100644
index 9063af2..0000000
--- a/test/492-checker-inline-invoke-interface/src/Main.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * 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.
- */
-
-interface Itf {
- public void $inline$foo();
-}
-
-public class Main implements Itf {
- public void $inline$foo() {
- }
-
- public static void main(String[] args) {
- Itf itf = new Main();
- itf.$inline$foo();
- }
-}