summaryrefslogtreecommitdiff
path: root/src/compiler_llvm/compiler_llvm.h
diff options
context:
space:
mode:
author Logan Chien <loganchien@google.com> 2012-03-21 00:34:12 +0800
committer Shih-wei Liao <sliao@google.com> 2012-03-26 21:10:46 -0700
commitde08e84143f7339d5bad24f252681207abbe0951 (patch)
tree6a810189c3fb29f24c8e057b5fdfc824012f0b2d /src/compiler_llvm/compiler_llvm.h
parent0cc6ab6c5104f565a0a3256b5b2b31c6383be189 (diff)
Remove ELF filename argument.
We are embedding the ELF image in the Oat file. We don't need ELF filename anymore. (cherry picked from commit b245ccacf447b014838535a7d8a58365642f0c3d) Change-Id: I235429222401100c09381ba44a3978f38d5b499c
Diffstat (limited to 'src/compiler_llvm/compiler_llvm.h')
-rw-r--r--src/compiler_llvm/compiler_llvm.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/compiler_llvm/compiler_llvm.h b/src/compiler_llvm/compiler_llvm.h
index 90537ff2ee..2c37ac090c 100644
--- a/src/compiler_llvm/compiler_llvm.h
+++ b/src/compiler_llvm/compiler_llvm.h
@@ -83,10 +83,6 @@ class CompilerLLVM {
return cunits_[i];
}
- void SetElfFileName(std::string const& filename) {
- elf_filename_ = filename;
- }
-
void SetBitcodeFileName(std::string const& filename) {
bitcode_filename_ = filename;
}
@@ -135,8 +131,6 @@ class CompilerLLVM {
std::vector<CompilationUnit*> cunits_;
- std::string elf_filename_;
-
std::string bitcode_filename_;
UniquePtr<ElfLoader> elf_loader_;