diff options
author | 2014-02-18 18:37:26 +0000 | |
---|---|---|
committer | 2014-02-20 09:43:34 +0000 | |
commit | f3e2cc4a38389aa75eb8ee3973a535254bf1c8d2 (patch) | |
tree | ae6cf8c43b724cf2c5d21bd12e0eca507dcc7842 /compiler/compiler_backend.h | |
parent | e7da4cf71712a3d7a64166ceadfb176d07018d32 (diff) |
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 b20c125f0a..01a69afc89 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; |