diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2014-02-18 18:37:26 +0000 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2014-02-20 09:43:34 +0000 |
commit | f3e2cc4a38389aa75eb8ee3973a535254bf1c8d2 (patch) | |
tree | ae6cf8c43b724cf2c5d21bd12e0eca507dcc7842 /compiler/compiler_backend.h | |
parent | e7da4cf71712a3d7a64166ceadfb176d07018d32 (diff) | |
download | art-f3e2cc4a38389aa75eb8ee3973a535254bf1c8d2.zip art-f3e2cc4a38389aa75eb8ee3973a535254bf1c8d2.tar.gz art-f3e2cc4a38389aa75eb8ee3973a535254bf1c8d2.tar.bz2 |
Code cleanup to avoid LLVM dependency when building with quick only.
Change-Id: I0985c227d775c72fd23975d4c9bf673ba32615c2
Diffstat (limited to 'compiler/compiler_backend.h')
-rw-r--r-- | compiler/compiler_backend.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/compiler_backend.h b/compiler/compiler_backend.h index b20c125..01a69af 100644 --- a/compiler/compiler_backend.h +++ b/compiler/compiler_backend.h @@ -80,6 +80,9 @@ class CompilerBackend { } virtual bool IsPortable() const { return false; } + void SetBitcodeFileName(std::string const& filename) { + UNUSED(filename); + } virtual void InitCompilationUnit(CompilationUnit& cu) const = 0; |