summaryrefslogtreecommitdiff
path: root/compiler/export/jit_create.h
diff options
context:
space:
mode:
author Dmitrii Ishcheikin <ishcheikin@google.com> 2023-08-22 23:50:44 +0000
committer Dmitrii Ishcheikin <ishcheikin@google.com> 2023-08-23 14:05:41 +0000
commit61b1c151163a09ad49c0b74c19ee84caeb4d0345 (patch)
tree6b805b96dcca4655e351f7d4858accd56ed4f728 /compiler/export/jit_create.h
parent134d1ae6e38c679f0325b08a1e773e526a00db78 (diff)
Revert^3 "Merge libart and libart-compiler into a single library"
This reverts commit 4617cc65933921f40b8dd09ad630850a984486c7. Reason for revert: app startup regressions b/296703167 b/295363008 Change-Id: Ib31df00f80c57b9c86d6d0254e795b9ad6e22e00
Diffstat (limited to 'compiler/export/jit_create.h')
-rw-r--r--compiler/export/jit_create.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/compiler/export/jit_create.h b/compiler/export/jit_create.h
deleted file mode 100644
index 53dd45ef93..0000000000
--- a/compiler/export/jit_create.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Copyright (C) 2023 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.
- */
-
-#ifndef ART_COMPILER_EXPORT_JIT_CREATE_H_
-#define ART_COMPILER_EXPORT_JIT_CREATE_H_
-
-#include "base/macros.h"
-
-namespace art HIDDEN {
-namespace jit {
-
-class JitCompilerInterface;
-
-// Used in `libart-runtime` to create `libart-compiler` JIT.
-JitCompilerInterface* jit_create();
-
-} // namespace jit
-} // namespace art
-
-#endif // ART_COMPILER_EXPORT_JIT_CREATE_H_