Remove unused file: src/compiler_llvm/frontend.cc
Change-Id: I035e60d2c274d5bc5f158b30c671c32d110f0a0a
diff --git a/build/Android.libart-compiler-llvm.mk b/build/Android.libart-compiler-llvm.mk
index d52e6d2..c2ecf20 100644
--- a/build/Android.libart-compiler-llvm.mk
+++ b/build/Android.libart-compiler-llvm.mk
@@ -21,7 +21,6 @@
src/compiler_llvm/compilation_unit.cc \
src/compiler_llvm/compiler_llvm.cc \
src/compiler_llvm/dalvik_reg.cc \
- src/compiler_llvm/frontend.cc \
src/compiler_llvm/generated/art_module.cc \
src/compiler_llvm/inferred_reg_category_map.cc \
src/compiler_llvm/ir_builder.cc \
diff --git a/src/compiler_llvm/frontend.cc b/src/compiler_llvm/frontend.cc
deleted file mode 100644
index 7507b26..0000000
--- a/src/compiler_llvm/frontend.cc
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright (C) 2012 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.
- */
-
-#include "dex_file.h"
-#include "logging.h"
-
-#include <stdint.h>
-
-namespace art {
-
-int oatVRegOffset(const DexFile::CodeItem* code_item,
- uint32_t core_spills, uint32_t fp_spills,
- size_t frame_size, int reg) {
-
- // TODO: Remove oatVRegOffset() after we have adapted the OatWriter
- // and OatFile.
-
- UNIMPLEMENTED(WARNING) << "oatVRegOffset() is not and won't be "
- << "implemented in LLVM backend";
- return 0;
-}
-
-} // namespace art